Skip to content

Commit

Permalink
FIX: Sechailers (#69)
Browse files Browse the repository at this point in the history
Title
## Changelog

:cl:
fix: Поправил громкость звуков, починил номер кода
/:cl:
  • Loading branch information
ImJustKisik authored and Furrior committed Sep 20, 2023
1 parent c95addc commit 297e715
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modular_ss220/sechailer/code/sechailer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ GLOBAL_LIST_EMPTY(sechailers)
to_chat(user, "<span class='notice'>Dispatch radio broadcasting systems are recharging.</span>")
return FALSE
var/list/options = list()
for(var/option in list("502 (Убийство)", "101 (Сопротивление Аресту)", "308 (Проникновение)", "305 (Мятеж)", "402 (Нападение на Офицера)")) //Just hardcoded for now!
for(var/option in list("502 (Убийство)", "101 (Сопротивление Аресту)", "308 (Вторжение)", "305 (Мятеж)", "402 (Нападение на Офицера)")) //Just hardcoded for now!
options[option] = image(icon = 'modular_ss220/sechailer/icons/menu.dmi', icon_state = option)
var/message = show_radial_menu(user, src, options)
if(!message)
Expand All @@ -57,7 +57,7 @@ GLOBAL_LIST_EMPTY(sechailers)
last_dispatch = world.time
for(var/atom/movable/hailer in GLOB.sechailers)
if(hailer.loc && ismob(hailer.loc))
playsound(hailer.loc, "modular_ss220/sechailer/sound/dispatch_please_respond.ogg", 100, FALSE)
playsound(hailer.loc, "modular_ss220/sechailer/sound/dispatch_please_respond.ogg", 55, FALSE)

/obj/item/clothing/mask/gas/sechailer/ui_action_click(mob/user, actiontype)
. = ..()
Expand Down
Binary file modified modular_ss220/sechailer/icons/menu.dmi
Binary file not shown.

0 comments on commit 297e715

Please sign in to comment.