From 657ea5ac26fe309f2e7cba1fad7fbd569432d7db Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Sat, 24 Feb 2024 13:14:32 -0500 Subject: [PATCH] allow mountable machines on asteroid walls (#23974) --- code/game/objects/items/mountable_frames/mountables.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/mountable_frames/mountables.dm b/code/game/objects/items/mountable_frames/mountables.dm index 6abe277b4d9..c850bb5b6e9 100644 --- a/code/game/objects/items/mountable_frames/mountables.dm +++ b/code/game/objects/items/mountable_frames/mountables.dm @@ -1,5 +1,8 @@ /obj/item/mounted - var/list/buildon_types = list(/turf/simulated/wall) + var/list/buildon_types = list( + /turf/simulated/mineral/ancient, + /turf/simulated/wall + ) /obj/item/mounted/afterattack(atom/A, mob/user, proximity_flag)