From a1bc0321600dda1c7623f0dac9d8aba6e49e287b Mon Sep 17 00:00:00 2001 From: SawJester Date: Sat, 14 Dec 2024 09:31:44 -0500 Subject: [PATCH] Grouch Fix (#1784) Co-authored-by: SawJester --- Games/types/Mafia/roles/Independent/Grouch.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Games/types/Mafia/roles/Independent/Grouch.js b/Games/types/Mafia/roles/Independent/Grouch.js index 06ae1c080..fa8ad3a1f 100644 --- a/Games/types/Mafia/roles/Independent/Grouch.js +++ b/Games/types/Mafia/roles/Independent/Grouch.js @@ -5,6 +5,8 @@ module.exports = class Grouch extends Role { super("Grouch", player, data); this.alignment = "Independent"; + //Grouch is not Hostile so it should not contest win. + this.winCount = "Village"; this.cards = ["VillageCore", "WinIfAliveWhenVillageLose"]; } };