]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Change item_health_large to item_health_big
authorFreddy <schro.sb@gmail.com>
Sat, 5 Nov 2016 22:43:47 +0000 (23:43 +0100)
committerFreddy <schro.sb@gmail.com>
Sat, 5 Nov 2016 22:43:47 +0000 (23:43 +0100)
qcsrc/common/monsters/monster/mage.qc
qcsrc/common/t_items.qc

index 71bca32c64033b0fed60e56bbae2055c7c44dee6..748f9a9bd639130f695a0d5f936c93492f016d32 100644 (file)
@@ -451,7 +451,7 @@ METHOD(Mage, mr_anim, bool(Mage this, entity actor))
 #endif
 #ifdef SVQC
 .float speed;
-spawnfunc(item_health_large);
+spawnfunc(item_health_big);
 METHOD(Mage, mr_setup, bool(Mage this, entity actor))
 {
     TC(Mage, this);
@@ -461,7 +461,7 @@ METHOD(Mage, mr_setup, bool(Mage this, entity actor))
     if(!actor.stopspeed) { actor.stopspeed = (autocvar_g_monster_mage_speed_stop); }
     if(!actor.damageforcescale) { actor.damageforcescale = (autocvar_g_monster_mage_damageforcescale); }
 
-    actor.monster_loot = spawnfunc_item_health_large;
+    actor.monster_loot = spawnfunc_item_health_big;
     actor.monster_attackfunc = M_Mage_Attack;
 
     return true;
index 24ac65358dde9c0bce1b7eee713433b4eaa5b573..b96747f35b3fed0edf2bd997d8a126a14ee6ee66 100644 (file)
@@ -1381,7 +1381,7 @@ spawnfunc(item_health_medium)
     StartItem(this, ITEM_HealthMedium);
 }
 
-spawnfunc(item_health_large)
+spawnfunc(item_health_big)
 {
        if(!this.max_health)
                this.max_health = g_pickup_healthbig_max;
@@ -1409,6 +1409,7 @@ spawnfunc(item_armor25) { spawnfunc_item_armor_mega(this); }
 spawnfunc(item_armor_large) { spawnfunc_item_armor_mega(this); }
 spawnfunc(item_health1) { spawnfunc_item_health_small(this); }
 spawnfunc(item_health25) { spawnfunc_item_health_medium(this); }
+spawnfunc(item_health_large) { spawnfunc_item_health_big(this); }
 spawnfunc(item_health100) { spawnfunc_item_health_mega(this); }
 
 spawnfunc(item_strength)