From 815a2992aab763e15495c14b65e9b759343ec6e0 Mon Sep 17 00:00:00 2001 From: Gristlebee <56049844+Gristlebee@users.noreply.github.com> Date: Sat, 14 Sep 2024 23:20:11 -0700 Subject: [PATCH] Fixes gun misfires always happening (#3363) ## About The Pull Request I fucked up, sorrrrryyy. I forgot to fix the chances ## Why It's Good For The Game Fixes good ## Changelog :cl: fix: Misfires no longer have 100% chance /:cl: --- code/__DEFINES/guns.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/__DEFINES/guns.dm b/code/__DEFINES/guns.dm index b98da0bc1d18..d1cea0d28de4 100644 --- a/code/__DEFINES/guns.dm +++ b/code/__DEFINES/guns.dm @@ -70,9 +70,9 @@ #define MANUFACTURER_IMPORT "Lanchester Import Co." // Misfire chances if the gun's safety is off -#define GUN_NO_SAFETY_MALFUNCTION_CHANCE_LOW 100 -#define GUN_NO_SAFETY_MALFUNCTION_CHANCE_MEDIUM 100 -#define GUN_NO_SAFETY_MALFUNCTION_CHANCE_HIGH 100 +#define GUN_NO_SAFETY_MALFUNCTION_CHANCE_LOW 5 +#define GUN_NO_SAFETY_MALFUNCTION_CHANCE_MEDIUM 10 +#define GUN_NO_SAFETY_MALFUNCTION_CHANCE_HIGH 15 ///////////////// // ATTACHMENTS //