From dae3110100f7763947898690a31a25585062cb34 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Tue, 7 Jul 2020 13:52:41 -0400 Subject: [PATCH] Update wand.dm --- code/modules/projectiles/guns/magic/wand.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/projectiles/guns/magic/wand.dm b/code/modules/projectiles/guns/magic/wand.dm index 8703b8325c..f48020aeb5 100644 --- a/code/modules/projectiles/guns/magic/wand.dm +++ b/code/modules/projectiles/guns/magic/wand.dm @@ -8,7 +8,6 @@ can_charge = 0 max_charges = 100 //100, 50, 50, 34 (max charge distribution by 25%ths) var/variable_charges = 1 - var/self_attack = TRUE /obj/item/gun/magic/wand/Initialize() if(prob(75) && variable_charges) //25% chance of listed max charges, 50% chance of 1/2 max charges, 25% chance of 1/3 max charges @@ -34,7 +33,7 @@ if(!charges) shoot_with_empty_chamber(user) return - if(target == user && self_attack == TRUE) + if(target == user) if(no_den_usage) var/area/A = get_area(user) if(istype(A, /area/wizard_station))