Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Sep 9, 2023
1 parent 8e1502c commit c238087
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions code/game/machinery/doors/multi_tile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@
unacidable = TRUE
no_panel = 1
not_weldable = 1
var/queen_pryable = TRUE

/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ex_act(severity)
return
Expand All @@ -285,6 +286,9 @@
if(xeno.hive_pos != XENO_QUEEN)
return ..()

if(!queen_pryable)
return ..()

if(!locked)
return ..()

Expand Down Expand Up @@ -317,6 +321,7 @@
opacity = FALSE
glass = TRUE
var/throw_dir = EAST
queen_pryable = FALSE

/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/try_to_activate_door(mob/user)
return
Expand Down

0 comments on commit c238087

Please sign in to comment.