Fixes #1214 
Fixes #1219 
Fixes #1174 
Fixes #1185 
Fixes #1202 
Fixes #1170
This commit is contained in:
printer16
2016-12-24 04:14:00 +02:00
committed by skull132
parent 6cef8c9074
commit 657ca8acb3
7 changed files with 56 additions and 17 deletions
+5 -2
View File
@@ -1005,10 +1005,13 @@ var/global/list/obj/item/device/pda/PDAs = list()
var/who = src.owner
if(prob(50))
who = P.owner
for(var/mob/living/silicon/ai/ai in mob_list)
// Allows other AIs to intercept the message but the AI won't intercept their own message.
if(ai.aiPDA != P && ai.aiPDA != src)
ai.show_message("<i>Intercepted message from <b>[who]</b>: [t]</i>")
if(who != P.owner)
ai.show_message("<i>Intercepted message to <b>[who]</b>: [t]</i>")
else
ai.show_message("<i>Intercepted message from <b>[who]</b>: [t]</i>")
P.new_message_from_pda(src, t)
nanomanager.update_user_uis(U, src) // Update the sending user's PDA UI so that they can see the new message
@@ -11,6 +11,7 @@
var/datum/effect/effect/system/ion_trail_follow/ion_trail
var/on = 0.0
var/stabilization_on = 0
var/warned = 0
var/volume_rate = 500 //Needed for borg jetpack transfer
action_button_name = "Toggle Jetpack"
@@ -27,7 +28,6 @@
. = ..()
if(air_contents.total_moles < 5)
user << "<span class='danger'>The meter on \the [src] indicates you are almost out of gas!</span>"
playsound(user, 'sound/effects/alert.ogg', 50, 1)
/obj/item/weapon/tank/jetpack/verb/toggle_rockets()
set name = "Toggle Jetpack Stabilization"
@@ -65,6 +65,14 @@
src.ion_trail.stop()
return 0
if (src.air_contents.total_moles < 3 && !warned)
warned = 1
playsound(user, 'sound/effects/alert.ogg', 50, 1)
user << "<span class='danger'>The meter on \the [src] indicates you are almost out of gas and beeps loudly!</span>"
spawn(600)
warned = 0
var/datum/gas_mixture/G = src.air_contents.remove(num)