Reduce Clumsy Gene's Obnoxious RNG (#19126)

* clumsy rng

* seperate define for this too

* there are very harmful too

* replace with macros

* fixed handling

---------

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
Will
2026-02-09 00:18:07 +01:00
committed by GitHub
co-authored by Kashargul
parent f238fcf293
commit 1a0e3aa3e0
23 changed files with 29 additions and 26 deletions
+2 -2
View File
@@ -57,7 +57,7 @@
if(!armed)
to_chat(user, span_notice("You arm [src]."))
else
if((CLUMSY in user.mutations) && prob(50))
if(CLUMSY_FAIL_CHANCE(user))
var/which_hand = BP_L_HAND
if(!user.hand)
which_hand = BP_R_HAND
@@ -73,7 +73,7 @@
/obj/item/assembly/mousetrap/attack_hand(var/mob/living/user)
if(armed)
if((CLUMSY in user.mutations) && prob(50))
if(CLUMSY_FAIL_CHANCE(user))
var/which_hand = BP_L_HAND
if(!user.hand)
which_hand = BP_R_HAND