Skip to content

[BOUNTY] Implements atom integrity for walls, (which is needed to do) Upgraded Emitters can now tear down walls! Take Two! #5938

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Mar 23, 2025
1 change: 1 addition & 0 deletions code/game/turfs/closed/wall/reinf_walls.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
density = TRUE
turf_flags = IS_SOLID
smoothing_flags = SMOOTH_BITMASK
hardness = 10
sheet_type = /obj/item/stack/sheet/plasteel
sheet_amount = 1
girder_type = /obj/structure/girder/reinforced
Expand Down
11 changes: 11 additions & 0 deletions code/game/turfs/closed/walls.dm
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,17 @@
take_damage(150, armour_penetration=100)
//monkestation edit end

/* //MONKESTATION REMOVAL: Deprecated, obselete old code proc
/turf/closed/wall/proc/wall_singularity_pull(current_size)
if(current_size >= STAGE_FIVE)
if(prob(50))
dismantle_wall()
return
if(current_size == STAGE_FOUR)
if(prob(30))
dismantle_wall()
*/

/turf/closed/wall/narsie_act(force, ignore_mobs, probability = 20)
. = ..()
if(.)
Expand Down
Loading