]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/monsters/monster/spider.qc
Merge branch 'master' into Mario/monsters
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / monsters / monster / spider.qc
index 48ca45b74b9d7face44793589ebfd6cb87d415aa..7e3c9f0c3e3684cc0c5d261efd7f115c1a182b70 100644 (file)
@@ -124,7 +124,7 @@ void spawnfunc_monster_spider()
        if(Monster_CheckAppearFlags(self))
                return;
        
-       if not(monster_initialize(MON_SPIDER, FALSE)) { remove(self); return; }
+       if(!monster_initialize(MON_SPIDER, FALSE)) { remove(self); return; }
 }
 
 float m_spider(float req)
@@ -144,7 +144,7 @@ float m_spider(float req)
                }
                case MR_SETUP:
                {
-                       if not(self.health) self.health = (autocvar_g_monster_spider_health);
+                       if(!self.health) self.health = (autocvar_g_monster_spider_health);
                        
                        self.monster_loot = spawnfunc_item_health_medium;
                        self.monster_attackfunc = spider_attack;