Fix for slime steroids not working.

Fix for slime monkey spawning only spawning one monkey (it spawns 3 now).

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5476 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
Kortgstation@gmail.com
2013-01-06 01:27:58 +00:00
parent e4478711e4
commit bc56419710
2 changed files with 5 additions and 4 deletions
@@ -843,11 +843,12 @@ mob/living/carbon/slime/var/temperature_resistance = T0C+75
if(M.stat)
user << "\red The slime is dead!"
return..()
if(M.cores == 1)
if(M.cores == 3)
user <<"\red The slime already has the maximum amount of extract!"
return..()
user <<"You feed the slime the steroid. It now has triple the amount of extract."
M.cores = 1
M.cores = 3
del (src)
//////////////////////////////Old shit from metroids/RoRos, and the old cores, would not take much work to re-add them////////////////////////
+2 -2
View File
@@ -928,8 +928,8 @@ datum
required_other = 1
on_reaction(var/datum/reagents/holder)
for(var/i = 1, i <= 3, i++)
var /obj/item/weapon/reagent_containers/food/snacks/monkeycube/M = new /obj/item/weapon/reagent_containers/food/snacks/monkeycube
M.loc = get_turf_loc(holder.my_atom)
var /obj/item/weapon/reagent_containers/food/snacks/monkeycube/M = new /obj/item/weapon/reagent_containers/food/snacks/monkeycube
M.loc = get_turf_loc(holder.my_atom)
holder.clear_reagents()
del (holder)
//Green