mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-25 21:19:00 +01:00
fixes lesser drake weirdness (#21334)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user