Skip to content

Commit

Permalink
Update plasticflaps.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
ToasterBiome committed Oct 16, 2024
1 parent 758daf0 commit 2bfe9bc
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions code/game/objects/structures/plasticflaps.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
. = ..()
alpha = 0
gen_overlay()
air_update_turf()

/obj/structure/plasticflaps/on_changed_z_level(turf/old_turf, turf/new_turf, same_z_layer, notify_contents)
if(same_z_layer)
Expand All @@ -40,14 +41,19 @@
return TRUE
add_fingerprint(user)
var/action = anchored ? "unscrews [src] from" : "screws [src] to"
var/uraction = anchored ? "unscrew [src] from " : "screw [src] to"
var/uraction = anchored ? "unscrew [src] from" : "screw [src] to"
user.visible_message(span_warning("[user] [action] the floor."), span_notice("You start to [uraction] the floor..."), "You hear rustling noises.")
if(W.use_tool(src, user, 100, volume=100, extra_checks = CALLBACK(src, PROC_REF(check_anchored_state), anchored)))
setAnchored(!anchored)
to_chat(user, span_notice(" You [anchored ? "unscrew" : "screw"] [src] from the floor."))
return TRUE
else
if(!W.use_tool(src, user, 100, volume=100, extra_checks = CALLBACK(src, PROC_REF(check_anchored_state), anchored)))
return TRUE
setAnchored(!anchored)
update_atmos_behaviour()
air_update_turf()
to_chat(user, span_notice(" You [anchored ? "unscrew" : "screw"] [src] from the floor."))
return TRUE

///Update the flaps behaviour to gases, if not anchored will let air pass through
/obj/structure/plasticflaps/proc/update_atmos_behaviour()
can_atmos_pass = anchored ? ATMOS_PASS_YES : ATMOS_PASS_NO

/obj/structure/plasticflaps/wirecutter_act(mob/living/user, obj/item/W)
if(!anchored)
Expand Down Expand Up @@ -113,10 +119,6 @@
new /obj/item/stack/sheet/plastic/five(loc)
qdel(src)

/obj/structure/plasticflaps/Initialize(mapload)
. = ..()
air_update_turf()

/obj/structure/plasticflaps/Destroy()
var/atom/oldloc = loc
. = ..()
Expand Down

0 comments on commit 2bfe9bc

Please sign in to comment.