Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ihatethisengine committed Nov 23, 2023
1 parent 236a443 commit ca2c7bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/game/machinery/door_control.dm
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
if(is_mainship_level(z)) // on the almayer
return

shuttle.control_doors("lock", "all", force=FALSE)
shuttle.control_doors("force-lock", "all", force=FALSE)

/obj/structure/machinery/door_control/proc/handle_door()
for(var/obj/structure/machinery/door/airlock/D in range(range))
Expand Down
4 changes: 2 additions & 2 deletions tgui/packages/tgui/interfaces/DropshipFlightControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const DropshipDoorControl = (_, context) => {
disabled={disable_door_controls}
onClick={() =>
act('door-control', {
interaction: 'lock',
interaction: 'force-lock',
location: 'all',
})
}
Expand Down Expand Up @@ -81,7 +81,7 @@ const DropshipDoorControl = (_, context) => {
<Button
onClick={() =>
act('door-control', {
interaction: 'lock',
interaction: 'force-lock',
location: x.id,
})
}
Expand Down

0 comments on commit ca2c7bf

Please sign in to comment.