Removes some world << output, fixes a few bugs.

This commit is contained in:
Neerti
2017-09-05 22:52:46 -04:00
parent 6964f398c8
commit 5c8140ee0b
4 changed files with 6 additions and 14 deletions
-5
View File
@@ -640,16 +640,11 @@ default behaviour is:
return
/mob/living/Move(a, b, flag)
// if (buckled)
// world << "[src].Move() failed; buckled."
// return
if (buckled && buckled.loc != a) //not updating position
if (!buckled.anchored)
world << "[src].Move(); will return [buckled].Move ."
return buckled.Move(a, b)
else
world << "[src].Move() failed; buckled to anchored [buckled]."
return 0
if (restrained())
@@ -662,7 +662,7 @@
/mob/living/simple_animal/slime/light_pink
desc = "This slime seems a lot more peaceful than the others."
color = "#FF8888"
slime_color = "light_pink"
slime_color = "light pink"
coretype = /obj/item/slime_extract/light_pink
description_info = "This slime is effectively always disciplined initially."
@@ -670,10 +670,10 @@
discipline = 5
slime_mutation = list(
/mob/living/simple_animal/slime/green,
/mob/living/simple_animal/slime/green,
/mob/living/simple_animal/slime/emerald,
/mob/living/simple_animal/slime/emerald
/mob/living/simple_animal/slime/pink,
/mob/living/simple_animal/slime/pink,
/mob/living/simple_animal/slime/light_pink,
/mob/living/simple_animal/slime/light_pink
)
// Special
@@ -66,9 +66,6 @@
new_temperature = round(new_temperature * temp_factor)
L.bodytemperature = new_temperature
// L.bodytemperature = between(target_temperature,(L.bodytemperature - ((L.bodytemperature + potential_temperature_delta) * temp_factor) ), L.bodytemperature)
world << "Temperature of [L] is now [L.bodytemperature]."
return 1
/obj/item/projectile/temp/hot
+1 -1
View File
@@ -275,7 +275,7 @@
result_amount = 1
required = /obj/item/slime_extract/blue
/datum/chemical_reaction/slime/blue_frostoil/on_reaction(var/datum/reagents/holder)
/datum/chemical_reaction/slime/blue_stability/on_reaction(var/datum/reagents/holder)
new /obj/item/slimepotion/stabilizer(get_turf(holder.my_atom))
..()