Skip to content

Commit

Permalink
fix ssd time check
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaxeer committed Jan 13, 2025
1 parent 2c26877 commit cf426ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modular_bandastation/cryosleep/code/cryopod/cryopod.dm
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,8 @@ GLOBAL_LIST_EMPTY(objectives)
log_admin("[key_name(user)] tries to move [key_name(target)] to the cryopod, while it still has a client connected")
return

if(target.logout_time + CONFIG_GET(number/cryo_min_ssd_time) < world.time)
balloon_alert(user, "слишком мало в SSD")
if(target.logout_time + CONFIG_GET(number/cryo_min_ssd_time) > world.time)
balloon_alert(user, "слишком недавно в SSD")
return

var/answer = tgui_alert(
Expand Down

0 comments on commit cf426ef

Please sign in to comment.