Skip to content
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

You can no longer somehow reach *around* a shield wall #2513

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions code/game/machinery/shieldgen.dm
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,7 @@
density = TRUE
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF
light_outer_range = 3
pass_flags_self = parent_type::pass_flags_self & ~LETPASSCLICKS // monkestation edit: no you can't reach around the impenetrable shield
var/needs_power = FALSE
var/obj/machinery/power/shieldwallgen/gen_primary
var/obj/machinery/power/shieldwallgen/gen_secondary
Expand Down
1 change: 1 addition & 0 deletions code/modules/power/singularity/containment_field.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
can_atmos_pass = ATMOS_PASS_NO
light_outer_range = 4
layer = ABOVE_OBJ_LAYER
pass_flags_self = parent_type::pass_flags_self & ~LETPASSCLICKS // monkestation edit: no you can't reach around the impenetrable shield
///First of the generators producing the containment field
var/obj/machinery/field/generator/field_gen_1 = null
///Second of the generators producing the containment field
Expand Down
Loading