mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 04:30:44 +01:00
Refactors smiting out from being a large switch/case into datums. Adds a new smite option to build mode. This lets you choose a smite and rapidly apply it to a lot of people, presumably for EORG. Requested for by...one of the admins, I forget which.
8 lines
217 B
Plaintext
8 lines
217 B
Plaintext
/// Sends the target a fake adminhelp sound
|
|
/datum/smite/fake_bwoink
|
|
name = "Fake bwoink"
|
|
|
|
/datum/smite/fake_bwoink/effect(client/user, mob/living/target)
|
|
. = ..()
|
|
SEND_SOUND(target, 'sound/effects/adminhelp.ogg')
|