Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
fix flower (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dgeen authored Nov 16, 2023
1 parent 9491a74 commit 84d8879
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modular_RUtgmc/code/game/objects/structures/xeno.dm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@
var/turf/T = get_turf(src)
switch(structure)
if("wall")
T.ChangeTurf(/turf/closed/wall/resin/regenerating)
var/list/baseturfs = islist(T.baseturfs) ? T.baseturfs : list(T.baseturfs)
baseturfs |= T.type
T.ChangeTurf(/turf/closed/wall/resin/regenerating, baseturfs)
if("door")
new /obj/structure/mineral_door/resin(T)
deconstruct(TRUE)
Expand Down

0 comments on commit 84d8879

Please sign in to comment.