]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/tests.qc
Reduce name space of resource constants and variables (RESOURCE_* --> RES_*, resour...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / tests.qc
index e52d4fcf1111c67ddd6c17f53b95feed83d605b7..0eb3ec661c5ea3822a9dc210dba2dd25ff998389 100644 (file)
@@ -2,7 +2,7 @@
 
 void test_weapons_hurt(entity this)
 {
-    EXPECT_NE(100, GetResourceAmount(this, RESOURCE_HEALTH));
+    EXPECT_NE(100, GetResourceAmount(this, RES_HEALTH));
     delete(this.enemy);
     delete(this);
 }