mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Fixes artificers not building in space (#12116)
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
cast_sound = 'sound/items/welder.ogg'
|
||||
|
||||
/spell/aoe_turf/conjure/floor/choose_targets(mob/user = usr)
|
||||
return get_turf(user)
|
||||
return list(get_turf(user))
|
||||
|
||||
/spell/aoe_turf/conjure/floor/conjure_animation(var/atom/movable/overlay/animation, var/turf/target)
|
||||
animation.icon_state = "cultfloor"
|
||||
@@ -60,7 +60,7 @@
|
||||
cast_sound = 'sound/items/welder.ogg'
|
||||
|
||||
/spell/aoe_turf/conjure/wall/choose_targets(mob/user = usr)
|
||||
return get_turf(user)
|
||||
return list(get_turf(user))
|
||||
|
||||
/spell/aoe_turf/conjure/wall/conjure_animation(var/atom/movable/overlay/animation, var/turf/target)
|
||||
animation.icon_state = "cultwall"
|
||||
|
||||
Reference in New Issue
Block a user