]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/gamemodes/gamemode/nexball/weapon.qc
Update spectatee_status in the server immediately, it fixes various glitches in the...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / gamemodes / gamemode / nexball / weapon.qc
1 #ifndef GAMEMODE_NEXBALL_WEAPON_H
2 #define GAMEMODE_NEXBALL_WEAPON_H
3
4 CLASS(BallStealer, PortoLaunch)
5 /* flags     */ ATTRIB(BallStealer, spawnflags, int, WEP_TYPE_OTHER | WEP_FLAG_HIDDEN | WEP_FLAG_MUTATORBLOCKED);
6 /* impulse   */ ATTRIB(BallStealer, impulse, int, 0);
7 /* refname   */ ATTRIB(BallStealer, netname, string, "ballstealer");
8 /* wepname   */ ATTRIB(BallStealer, m_name, string, _("Ball Stealer"));
9 ENDCLASS(BallStealer)
10 REGISTER_WEAPON(NEXBALL, NEW(BallStealer));
11
12 #endif