mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-07-19 11:44:17 +01:00
c8983e1b03
AKA [PORT] Refactors smiting, adds smite build mode tgstation/tgstation#55327 !! NOT!! A!! RUNNING!! BUILD!! LIGHTNING IS BROKEN IMMERSE IS COMMENTED OUT HALF OF THIS SHIT IS BROKEN DO NOT BASE YOURSELF ON THIS BUILD!!
13 lines
279 B
Plaintext
13 lines
279 B
Plaintext
/// Their Final Message
|
|
/datum/smite/finalmessage
|
|
name = "Final Message"
|
|
|
|
/datum/smite/finalmessage/effect(client/user, mob/living/target)
|
|
. = ..()
|
|
var/mob/living/C = target
|
|
if(C.stat == DEAD)
|
|
to_chat(usr, "<span class='warning'>[C] is dead!")
|
|
return
|
|
else
|
|
C.goodbye()
|