X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fmutators%2Fgamemode_invasion.qh;h=191aef9ad2e734a2fd8dc9cf219361c767df96c4;hb=d55679c21627cd51c59a1e329917308f360312f6;hp=3d10814b49f8bbddb13e235476955ec42cd3f9e1;hpb=1f988ad58a9fb5cef7ed843ad839b23dd23f6dc9;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/mutators/gamemode_invasion.qh b/qcsrc/server/mutators/gamemode_invasion.qh index 3d10814b4..191aef9ad 100644 --- a/qcsrc/server/mutators/gamemode_invasion.qh +++ b/qcsrc/server/mutators/gamemode_invasion.qh @@ -1,7 +1,18 @@ -float numspawned; -float maxspawned; -float roundcnt; -float maxrounds; -float numkilled; -float last_check; -float maxcurrent; +#ifndef GAMEMODE_INVASION_H +#define GAMEMODE_INVASION_H + +float inv_numspawned; +float inv_maxspawned; +float inv_roundcnt; +float inv_maxrounds; +float inv_numkilled; +float inv_lastcheck; +float inv_maxcurrent; + +float invasion_teams; +float inv_monsters_perteam[17]; + +float inv_monsterskill; + +const float ST_INV_KILLS = 1; +#endif