diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm
index e3411ba15c..efc3fa549e 100644
--- a/code/game/objects/items/devices/radio/radio.dm
+++ b/code/game/objects/items/devices/radio/radio.dm
@@ -92,7 +92,7 @@ var/global/list/default_medbay_channels = list(
/obj/item/device/radio/interact(mob/user)
if(!user)
- return 0
+ return FALSE
if(b_stat)
wires.Interact(user)
@@ -148,10 +148,10 @@ var/global/list/default_medbay_channels = list(
/obj/item/device/radio/proc/has_channel_access(var/mob/user, var/freq)
if(!user)
- return 0
+ return FALSE
if(!(freq in internal_channels))
- return 0
+ return FALSE
return user.has_internal_radio_channel_access(internal_channels[freq])
@@ -188,7 +188,7 @@ var/global/list/default_medbay_channels = list(
/obj/item/device/radio/Topic(href, href_list)
if(..())
- return 1
+ return TRUE
usr.set_machine(src)
if (href_list["track"])
@@ -226,7 +226,7 @@ var/global/list/default_medbay_channels = list(
set_frequency(text2num(freq))
. = 1
if(href_list["nowindow"]) // here for pAIs, maybe others will want it, idk
- return 1
+ return TRUE
if(.)
SSnanoui.update_uis(src)
@@ -243,8 +243,6 @@ var/global/list/default_medbay_channels = list(
channel = null
if (!istype(connection))
return
- if (!connection)
- return
var/static/mob/living/silicon/ai/announcer/A = new /mob/living/silicon/ai/announcer(src, null, null, 1)
A.SetName(from)
@@ -271,18 +269,18 @@ var/global/list/default_medbay_channels = list(
return null
/obj/item/device/radio/talk_into(mob/living/M as mob, message, channel, var/verb = "says", var/datum/language/speaking = null)
- if(!on) return 0 // the device has to be on
+ if(!on) return FALSE // the device has to be on
// Fix for permacell radios, but kinda eh about actually fixing them.
- if(!M || !message) return 0
+ if(!M || !message) return FALSE
- if(speaking && (speaking.flags & (SIGNLANG|NONVERBAL))) return 0
+ if(speaking && (speaking.flags & (SIGNLANG|NONVERBAL))) return FALSE
if(istype(M)) M.trigger_aiming(TARGET_CAN_RADIO)
// Uncommenting this. To the above comment:
// The permacell radios aren't suppose to be able to transmit, this isn't a bug and this "fix" is just making radio wires useless. -Giacom
if(wires.IsIndexCut(WIRE_TRANSMIT)) // The device has to have all its wires and shit intact
- return 0
+ return FALSE
if(!radio_connection)
set_frequency(frequency)
@@ -301,9 +299,7 @@ var/global/list/default_medbay_channels = list(
//#### Grab the connection datum ####//
var/datum/radio_frequency/connection = handle_message_mode(M, message, channel)
if (!istype(connection))
- return 0
- if (!connection)
- return 0
+ return FALSE
var/turf/position = get_turf(src)
@@ -363,7 +359,7 @@ var/global/list/default_medbay_channels = list(
if(jamming)
var/distance = jamming["distance"]
to_chat(M,"\icon[src] You hear the [distance <= 2 ? "loud hiss" : "soft hiss"] of static.")
- return 0
+ return FALSE
// First, we want to generate a new radio signal
var/datum/signal/signal = new
@@ -411,6 +407,7 @@ var/global/list/default_medbay_channels = list(
for(var/obj/machinery/telecomms/allinone/R in telecomms_list)
R.receive_signal(signal)
+ // Receiving code can be located in Telecommunications.dm
if(signal.data["done"] && position.z in signal.data["level"])
return TRUE //Huzzah, sent via subspace
@@ -471,13 +468,13 @@ var/global/list/default_medbay_channels = list(
to_chat(loc,"\The [src] pings as it reestablishes subspace communications.")
subspace_transmission = TRUE
// we're done here.
- return 1
+ return TRUE
// Oh my god; the comms are down or something because the signal hasn't been broadcasted yet in our level.
// Send a mundane broadcast with limited targets:
//THIS IS TEMPORARY. YEAH RIGHT
- if(!connection) return 0 //~Carn
+ if(!connection) return FALSE //~Carn
return Broadcast_Message(connection, M, voicemask, pick(M.speak_emote),
src, message, displayname, jobname, real_name, M.voice_name,
filter_type, signal.data["compression"], GetConnectedZlevels(position.z), connection.frequency,verb,speaking)
@@ -493,7 +490,7 @@ var/global/list/default_medbay_channels = list(
/obj/item/device/radio/proc/accept_rad(obj/item/device/radio/R as obj, message)
if ((R.frequency == frequency && message))
- return 1
+ return TRUE
else if
else
@@ -533,7 +530,7 @@ var/global/list/default_medbay_channels = list(
if (!accept)
for (var/ch_name in channels)
var/datum/radio_frequency/RF = secure_radio_connections[ch_name]
- if (RF.frequency==freq && (channels[ch_name]&FREQ_LISTENING))
+ if (RF && RF.frequency==freq && (channels[ch_name]&FREQ_LISTENING))
accept = 1
break
if (!accept)
@@ -684,7 +681,7 @@ var/global/list/default_medbay_channels = list(
/obj/item/device/radio/borg/Topic(href, href_list)
if(..())
- return 1
+ return TRUE
if (href_list["mode"])
var/enable_subspace_transmission = text2num(href_list["mode"])
if(enable_subspace_transmission != subspace_transmission)