]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/sv_main.qc
Purge client/defs.qh
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / sv_main.qc
index 09446203db69cf85d1588c0cdb459625244ff80e..4969c51058bdabd930f5fa09505a09f6f3486431 100644 (file)
@@ -4,6 +4,7 @@
 #include "g_hook.qh"
 #include "g_damage.qh"
 #include "g_world.qh"
+#include "spawnpoints.qh"
 #include <server/gamelog.qh>
 
 #include "bot/api.qh"
@@ -12,6 +13,7 @@
 
 #include <server/mutators/_mod.qh>
 #include "weapons/csqcprojectile.qh"
+#include <server/weapons/common.qh>
 #include <server/compat/quake3.qh>
 
 #include "../common/constants.qh"
 
 void CreatureFrame_hotliquids(entity this)
 {
-       if (this.dmgtime >= time)
+       if (this.contents_damagetime >= time)
        {
                return;
        }
 
-       this.dmgtime = time + autocvar_g_balance_contents_damagerate;
+       this.contents_damagetime = time + autocvar_g_balance_contents_damagerate;
 
        if (this.flags & FL_PROJECTILE)
        {
@@ -84,7 +86,7 @@ void CreatureFrame_Liquids(entity this)
                if (!(this.flags & FL_INWATER))
                {
                        this.flags |= FL_INWATER;
-                       this.dmgtime = 0;
+                       this.contents_damagetime = 0;
                }
 
                CreatureFrame_hotliquids(this);
@@ -95,7 +97,7 @@ void CreatureFrame_Liquids(entity this)
                {
                        // play leave water sound
                        this.flags &= ~FL_INWATER;
-                       this.dmgtime = 0;
+                       this.contents_damagetime = 0;
                }
        }
 }