mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-14 00:11:00 +00:00
88c055ea3c
<taniwha> zinx: thanks :) zinx' klik mod :)
13 lines
158 B
C++
13 lines
158 B
C++
#include "common.qh"
|
|
#include "debug.qh"
|
|
|
|
void() debug_impulse = {
|
|
local float imp;
|
|
|
|
imp = self.impulse;
|
|
self.impulse = 0;
|
|
|
|
{
|
|
self.impulse = imp;
|
|
}
|
|
};
|