fucky wucky (#5102)

I joked about having something silly to tell players we're fixing shit,
and while looking into bee's statpanel I noticed the image for this in
their HTML files so of course I had to add it.

Ported from: BeeStation/BeeStation-Hornet/pull/1574
This commit is contained in:
Zandario
2023-03-03 22:04:33 -08:00
committed by GitHub
parent 291228c2c2
commit 83d3e312f8
6 changed files with 18 additions and 0 deletions
@@ -0,0 +1,10 @@
/client/proc/fucky_wucky()
set category = "Debug"
set name = "Fucky Wucky"
set desc = "Inform the players that the code monkeys at our headquarters are working very hard to fix this."
for(var/victim as anything in GLOB.player_list)
var/datum/asset/fuckywucky = get_asset_datum(/datum/asset/simple/fuckywucky)
fuckywucky.send(victim)
SEND_SOUND(victim, 'sound/misc/fuckywucky.ogg')
to_chat(victim, "<img src='fuckywucky.png'>")