mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-21 12:04:48 +01:00
Readjusts Wand of Death for pure bugfix
This commit is contained in:
@@ -67,8 +67,7 @@
|
||||
var/message ="<span class='warning'>You irradiate yourself with pure energy! "
|
||||
message += pick("Do not pass go. Do not collect 200 zorkmids.</span>","You feel more confident in your spell casting skills.</span>","You Die...</span>","Do you want your possessions identified?</span>")
|
||||
to_chat(user, message)
|
||||
user.gib()
|
||||
visible_message("<span class='danger'>[user] has paid the ultimate price for innapropriate wand discipline!")
|
||||
user.adjustBruteLoss(3000)
|
||||
charges--
|
||||
..()
|
||||
|
||||
|
||||
@@ -21,12 +21,8 @@
|
||||
/obj/item/projectile/magic/death/on_hit(var/mob/living/carbon/G)
|
||||
. = ..()
|
||||
if(isliving(G))
|
||||
if(G.stat != DEAD)
|
||||
G.adjustBruteLoss(300)
|
||||
visible_message("<span class='danger'>[G] falls backward as life is drained from them!")
|
||||
else
|
||||
G.gib()
|
||||
visible_message("<span class='danger'>[G] explodes violently as the magical energies course through their corpse!")
|
||||
G.adjustBruteLoss(3000)
|
||||
visible_message("<span class='danger'>[G] topples backwards as the death bolt impacts them!</span>")
|
||||
|
||||
/obj/item/projectile/magic/fireball/Range()
|
||||
var/turf/T1 = get_step(src,turn(dir, -45))
|
||||
|
||||
Reference in New Issue
Block a user