diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index e426765f0..bd9153d6d 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -1259,6 +1259,9 @@ GLOBAL_LIST_EMPTY(custom_outfits) //Admin created outfits switch(punishment) if(ADMIN_PUNISHMENT_LIGHTNING) + if(prob(75)) + playsound(target, 'hyperstation/sound/misc/NOW.ogg', 75, 1) + sleep(4) var/turf/T = get_step(get_step(target, NORTH), NORTH) T.Beam(target, icon_state="lightning[rand(1,12)]", time = 5) target.adjustFireLoss(75) diff --git a/hyperstation/sound/misc/NOW.ogg b/hyperstation/sound/misc/NOW.ogg new file mode 100644 index 000000000..17bb9366e Binary files /dev/null and b/hyperstation/sound/misc/NOW.ogg differ