From ae46b029e3e6053da6dfda90404e12a5e2f89273 Mon Sep 17 00:00:00 2001 From: Jacquerel Date: Tue, 6 Jan 2026 22:36:09 +0000 Subject: [PATCH] Removes Big Hands quirk (#94759) ## About The Pull Request This PR removes the quirk "Big Hands" from the game ## Why It's Good For The Game https://superset.moth.fans/superset/dashboard/28/?native_filters_key=U_1PwGbC9S0Sdb6We7h4rZiXiq-2OqlJo28rmbtiCXl6s7Cbi_Nhw-uLWDvHMTrw In the last quarter-year of played rounds, Light Drinker was assigned 35,600 times. Big Hands was assigned 57 times. Nobody uses this quirk. It's boring. It says nothing about your character. We already have a better, more fun, and more-used quirk that makes you bad at using guns (stormtrooper aim). Sometimes it feels like we add negative quirks just because we can, and this is one of those. ## Changelog :cl: del: It's no longer considered quirky to have Big Hands. /:cl: --- code/controllers/subsystem/processing/quirks.dm | 1 - code/datums/quirks/negative_quirks/big_hands.dm | 10 ---------- tgstation.dme | 1 - 3 files changed, 12 deletions(-) delete mode 100644 code/datums/quirks/negative_quirks/big_hands.dm diff --git a/code/controllers/subsystem/processing/quirks.dm b/code/controllers/subsystem/processing/quirks.dm index 67e51e2747b..fbfaa99f5f8 100644 --- a/code/controllers/subsystem/processing/quirks.dm +++ b/code/controllers/subsystem/processing/quirks.dm @@ -20,7 +20,6 @@ GLOBAL_LIST_INIT_TYPED(quirk_blacklist, /list/datum/quirk, list( list(/datum/quirk/quadruple_amputee, /datum/quirk/frail), list(/datum/quirk/social_anxiety, /datum/quirk/mute), list(/datum/quirk/mute, /datum/quirk/softspoken), - list(/datum/quirk/poor_aim, /datum/quirk/bighands), list(/datum/quirk/bilingual, /datum/quirk/foreigner, /datum/quirk/csl), list(/datum/quirk/spacer_born, /datum/quirk/settler), list(/datum/quirk/photophobia, /datum/quirk/nyctophobia), diff --git a/code/datums/quirks/negative_quirks/big_hands.dm b/code/datums/quirks/negative_quirks/big_hands.dm deleted file mode 100644 index 778ea6af8c3..00000000000 --- a/code/datums/quirks/negative_quirks/big_hands.dm +++ /dev/null @@ -1,10 +0,0 @@ -/datum/quirk/bighands - name = "Big Hands" - desc = "You have big hands, it sure does make it hard to use a lot of things." - icon = FA_ICON_HAND_DOTS - value = -6 - mob_trait = TRAIT_CHUNKYFINGERS - gain_text = span_danger("Your hands are huge! You can't use small things anymore!") - lose_text = span_notice("Your hands are back to normal.") - medical_record_text = "Patient has unusually large hands. Made me question my masculinity..." - hardcore_value = 5 diff --git a/tgstation.dme b/tgstation.dme index 80f67111dd6..bf358c3912d 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -1867,7 +1867,6 @@ #include "code\datums\quirks\negative_quirks\anosmia.dm" #include "code\datums\quirks\negative_quirks\asthma.dm" #include "code\datums\quirks\negative_quirks\bad_back.dm" -#include "code\datums\quirks\negative_quirks\big_hands.dm" #include "code\datums\quirks\negative_quirks\blindness.dm" #include "code\datums\quirks\negative_quirks\blood_deficiency.dm" #include "code\datums\quirks\negative_quirks\body_purist.dm"