Skip to content

Commit

Permalink
Merge branch 'master' into Delta_fix_pack
Browse files Browse the repository at this point in the history
  • Loading branch information
Hearstrings authored Dec 1, 2023
2 parents d0b59d0 + 79b6371 commit 638d540
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 23 deletions.
6 changes: 3 additions & 3 deletions modular_ss220/devices/code/items/radio.dm
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@
* Radio QoL improvement
* So players can Alt+click to enable dynamic and Ctrl+Shift+click to enable speaker
*/
/obj/item/radio/examine(mob/user)
/obj/item/radio/headset/examine(mob/user)
. = ..()
if(in_range(src, user) || loc == user)
. += span_info("Alt-click on \the [name] to toggle broadcasting.")
. += span_info("Ctrl-Shift-click on \the [src] to toggle speaker.")

/obj/item/radio/AltClick(mob/user)
/obj/item/radio/headset/AltClick(mob/user)
if(!Adjacent(user))
return
if(!iscarbon(usr) && !isrobot(usr))
Expand All @@ -53,7 +53,7 @@
broadcasting = !broadcasting
to_chat(user, span_notice("You toggle broadcasting [broadcasting ? "on" : "off"]."))

/obj/item/radio/CtrlShiftClick(mob/user)
/obj/item/radio/headset/CtrlShiftClick(mob/user)
if(!Adjacent(user))
return
if(!iscarbon(usr) && !isrobot(usr))
Expand Down
1 change: 0 additions & 1 deletion modular_ss220/modular_ss220.dme
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
#include "logs/_logs.dme"
#include "mobs/_mobs.dme"
#include "pixel_shift/_pixel_shift.dme"
#include "radio_sound/radio_sound.dme"
#include "screentip_change/_screentip_change.dme"
#include "smart_equip_targeted/_smart_equip_targeted.dme"
#include "sm_space_drop/sm_space_drop.dme"
Expand Down
16 changes: 0 additions & 16 deletions modular_ss220/radio_sound/code/radiosound.dm

This file was deleted.

3 changes: 0 additions & 3 deletions modular_ss220/radio_sound/radio_sound.dme

This file was deleted.

Binary file removed modular_ss220/radio_sound/sound/common.ogg
Binary file not shown.
Binary file removed modular_ss220/radio_sound/sound/security.ogg
Binary file not shown.
Binary file removed modular_ss220/radio_sound/sound/syndie.ogg
Binary file not shown.

0 comments on commit 638d540

Please sign in to comment.