Merge pull request #14092 from farie82/revert-14037-lag_wont_drag_on

Revert "Disables dragon transformation because its users can freeze the whole server"
This commit is contained in:
Fox McCloud
2020-10-04 04:10:30 -04:00
committed by GitHub
@@ -120,13 +120,18 @@
return
var/mob/living/carbon/human/H = user
var/random = rand(1,2)
var/random = rand(1,3)
switch(random)
if(1)
to_chat(user, "<span class='danger'>Your flesh begins to melt! Miraculously, you seem fine otherwise.</span>")
H.set_species(/datum/species/skeleton)
if(2)
to_chat(user, "<span class='danger'>Power courses through you! You can now shift your form at will.")
if(user.mind)
var/obj/effect/proc_holder/spell/targeted/shapeshift/dragon/D = new
user.mind.AddSpell(D)
if(3)
to_chat(user, "<span class='danger'>You feel like you could walk straight through lava now.</span>")
H.weather_immunities |= "lava"