From 342a1bac19b1685b2db98fee8d88cf6a5fc68ff3 Mon Sep 17 00:00:00 2001 From: Digi Purpur Date: Fri, 16 Jun 2023 14:51:47 -0700 Subject: [PATCH] Fixed probability of misuse. Using the lighter incorrectly is now (1/2)(5%) and (1/2)(1%) rather than the demo probability of 25% each. --- .../code/game/objects/items/weapons/cigs_lighters.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_chomp/code/game/objects/items/weapons/cigs_lighters.dm b/modular_chomp/code/game/objects/items/weapons/cigs_lighters.dm index 4d75e5c298..c4d485e14f 100644 --- a/modular_chomp/code/game/objects/items/weapons/cigs_lighters.dm +++ b/modular_chomp/code/game/objects/items/weapons/cigs_lighters.dm @@ -30,7 +30,7 @@ if(prob(50)) user.visible_message("[user] safely activates the [src] with a push of a button!") else - if(prob(50)) + if(prob(95)) user.visible_message("After a few attempts, [user] manages to excite the supermatter within the [src].") else to_chat(user, "You hurt yourself on the shielding!") @@ -101,7 +101,7 @@ if(prob(50)) user.visible_message("[user] safely activates the [src] with a push of a button!") else - if(prob(50)) + if(prob(99)) user.visible_message("After a few attempts, [user] manages to excite the supermatter within the [src].") else to_chat(user, "You singe yourself on the phoron shielding the excited supermatter!")