fixes lesser drake weirdness (#21334)

This commit is contained in:
GDN
2023-06-21 22:52:29 +01:00
committed by GitHub
parent 342a775e35
commit de35644d17
+3 -3
View File
@@ -42,8 +42,8 @@
to_chat(caster, "<span class='warning'>You're already shapeshifted!</span>")
return
var/mob/living/shape = new shapeshift_type(caster.loc)
caster.loc = shape
var/mob/living/shape = new shapeshift_type(get_turf(caster))
caster.forceMove(shape)
caster.status_flags |= GODMODE
current_shapes |= shape
@@ -61,7 +61,7 @@
break
if(!caster)
return
caster.loc = shape.loc
caster.forceMove(get_turf(shape))
caster.status_flags &= ~GODMODE
clothes_req = initial(clothes_req)