Skip to content

Commit

Permalink
Update code/game/machinery/doors/airlock_electronics.dm
Browse files Browse the repository at this point in the history
Co-authored-by: Mark Suckerberg <[email protected]>
Signed-off-by: Erika Fox <[email protected]>
  • Loading branch information
Erikafox and MarkSuckerberg authored Dec 7, 2024
1 parent ee7e7c8 commit 4b78266
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/machinery/doors/airlock_electronics.dm
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@
var/tune = params["tune"]
var/adjust = text2num(params["adjust"])
if(adjust)
tune = close_speed + adjust * 10
tune = close_speed + adjust SECONDS
. = TRUE
else if(text2num(tune) != null)
tune = tune * 10
tune = tune SECONDS
. = TRUE
if(.)
close_speed = clamp(tune, 0, 300)
Expand Down

0 comments on commit 4b78266

Please sign in to comment.