mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
10 lines
207 B
R
10 lines
207 B
R
float FL_MONSTER = 32;
|
|
float FL_FLY = 1;
|
|
float FL_SWIM = 2;
|
|
.integer flags;
|
|
void (entity other)
|
|
trigger_monsterjump_touch =
|
|
{
|
|
if ((other.flags & (FL_MONSTER | FL_FLY | FL_SWIM)) != FL_MONSTER)
|
|
return;
|
|
};
|