From e78d84f9e44297f4b78acf01cb1e32f61284b04e Mon Sep 17 00:00:00 2001 From: John Date: Sat, 1 Aug 2015 02:45:37 +0300 Subject: [PATCH] Merits are not in the random unite list anymore --- toontown/chat/ResistanceChat.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/toontown/chat/ResistanceChat.py b/toontown/chat/ResistanceChat.py index 1c480829..99bb6800 100755 --- a/toontown/chat/ResistanceChat.py +++ b/toontown/chat/ResistanceChat.py @@ -23,6 +23,7 @@ RESISTANCE_MONEY = 2 RESISTANCE_TICKETS = 3 RESISTANCE_MERITS = 4 resistanceMenu = [RESISTANCE_TOONUP, RESISTANCE_RESTOCK, RESISTANCE_MONEY, RESISTANCE_TICKETS, RESISTANCE_MERITS] +randomResistanceMenu = [RESISTANCE_TOONUP, RESISTANCE_RESTOCK, RESISTANCE_MONEY, RESISTANCE_TICKETS] resistanceDict = { RESISTANCE_TOONUP: { 'menuName': TTLocalizer.ResistanceToonupMenu, @@ -138,7 +139,7 @@ def getItemValue(textId): def getRandomId(): - menuIndex = random.choice(resistanceMenu) + menuIndex = random.choice(randomResistanceMenu) itemIndex = random.choice(getItems(menuIndex)) return encodeId(menuIndex, itemIndex)