From 9b755ed2a7ffba4371bcf71d14e29e84151d2843 Mon Sep 17 00:00:00 2001 From: Loudrob Date: Sun, 29 Mar 2015 12:08:31 -0400 Subject: [PATCH] New record is supposed to be orange. --- toontown/fishing/FishPanel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/toontown/fishing/FishPanel.py b/toontown/fishing/FishPanel.py index c2a31a1f..ac5c9219 100644 --- a/toontown/fishing/FishPanel.py +++ b/toontown/fishing/FishPanel.py @@ -97,11 +97,13 @@ class FishPanel(DirectFrame): self.extraLabel.hide() elif code == FishGlobals.FishItemNewEntry: self.extraLabel.show() + self.extraLabel['text_fg'] = (0.2, 0.8, 0.4, 1) self.extraLabel['text'] = TTLocalizer.FishingNewEntry self.extraLabel['text_scale'] = TTLocalizer.FPnewEntry self.extraLabel.setPos(0, 0, 0.26) elif code == FishGlobals.FishItemNewRecord: self.extraLabel.show() + self.extraLabel['text_fg'] = (1, .5, 0, 1) self.extraLabel['text'] = TTLocalizer.FishingNewRecord self.extraLabel['text_scale'] = TTLocalizer.FPnewRecord self.photo.show()