From ac0c227b211e39a752df1b62fccdcd64a6c5b6a9 Mon Sep 17 00:00:00 2001 From: Daylight Date: Tue, 28 Apr 2020 15:52:43 +0300 Subject: [PATCH] Uses TRUE instead of 1 --- code/modules/projectiles/guns/magic/wand.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/guns/magic/wand.dm b/code/modules/projectiles/guns/magic/wand.dm index 45e15cad43d..cd6fd4261a8 100644 --- a/code/modules/projectiles/guns/magic/wand.dm +++ b/code/modules/projectiles/guns/magic/wand.dm @@ -8,7 +8,7 @@ can_charge = 0 max_charges = 100 //100, 50, 50, 34 (max charge distribution by 25%ths) var/variable_charges = 1 - no_den_usage = 1 + no_den_usage = TRUE /obj/item/gun/magic/wand/New() 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