mirror of
https://git.code.sf.net/p/quake/prozac-qfcc
synced 2025-02-25 21:41:09 +00:00
- add a spawn wrapper, so we can guarantee certain fields are initialized. (not that it initializes anything yet) - removed some commenting that prevented GRUNTY_EXTRA_WEAPONS (a debug define) from working - removed "hacked forcefield gets you teamkills" from BUGS list.
10 lines
102 B
C++
10 lines
102 B
C++
entity () real_spawn;
|
|
|
|
entity () spawn =
|
|
{
|
|
local entity ent;
|
|
|
|
ent = real_spawn ();
|
|
|
|
return ent;
|
|
};
|