Skip to content

Commit

Permalink
Update menu_text_objects.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Helg2 committed Dec 4, 2024
1 parent b10c470 commit 0d345a9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/_onclick/hud/screen_objects/menu_text_objects.dm
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@
maptext = "<span class='maptext' style=font-size:8px>ПРИСОЕДИНИТЬСЯ</span>"
icon_state = "join"
return
var/mob/new_player/player = hud?.mymob
if(!hud.mymob)
return
var/mob/new_player/player = hud.mymob
maptext = "<span class='maptext' style=font-size:8px>ВЫ: [player.ready ? "" : "НЕ "]ГОТОВЫ</span>"
icon_state = player.ready ? "ready" : "unready"

Expand Down

0 comments on commit 0d345a9

Please sign in to comment.