diff --git a/code/modules/flufftext/Hallucination.dm b/code/modules/flufftext/Hallucination.dm
index 0dc7b26b1fd..df090a79963 100644
--- a/code/modules/flufftext/Hallucination.dm
+++ b/code/modules/flufftext/Hallucination.dm
@@ -110,7 +110,7 @@ Gunshots/explosions/opening doors/less rare audio (done)
if(41 to 65)
//Strange audio
//src << "Strange Audio"
- switch(rand(1,14))
+ switch(rand(1,15))
if(1) src << 'sound/machines/airlock.ogg'
if(2)
if(prob(50))src << 'sound/effects/Explosion1.ogg'
@@ -147,6 +147,14 @@ Gunshots/explosions/opening doors/less rare audio (done)
src << "
Priority Announcement
"
src << "
The Emergency Shuttle has docked with the station. You have 3 minutes to board the Emergency Shuttle.
"
src << sound('sound/AI/shuttledock.ogg')
+ if(15)
+ src << 'sound/items/Welder.ogg'
+ if(16)
+ src << 'sound/items/Screwdriver.ogg'
+ if(17)
+ src << 'sound/weapons/saberon.ogg'
+ if(18)
+ src << 'sound/weapons/saberoff.ogg'
if(66 to 70)
//Flashes of danger
if(!halbody)
@@ -408,24 +416,30 @@ Gunshots/explosions/opening doors/less rare audio (done)
/obj/effect/hallucination/battle/New(loc,var/mob/living/carbon/T)
target = T
- var/hits = rand(3,5)
- switch(rand(1,3))
+ var/hits = rand(3,6)
+ switch(rand(1,4))
if(1) //Laser fight
for(var/i=0,i proc / defines
switch(hal_type)
if("xeno")
@@ -657,3 +694,5 @@ var/list/non_fakeattack_weapons = list(/obj/item/weapon/gun/projectile, /obj/ite
new /obj/effect/hallucination/fakeattacker(src.loc,src)
if("bolts")
new /obj/effect/hallucination/bolts(src.loc,src)
+ if("whispers")
+ new /obj/effect/hallucination/whispers(src.loc,src)
\ No newline at end of file