diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-08-21 19:48:24 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-08-21 19:48:24 +0200 |
commit | b6dfc3bd2ed4e69beaafb750c868c4200ac84223 (patch) | |
tree | b153724a12c99bc0360eee27e798d56195e9892a | |
parent | 8ac0aceadcadb4241d04ab65897a47b9e817d4b4 (diff) | |
download | ponysay-b6dfc3bd2ed4e69beaafb750c868c4200ac84223.tar.gz ponysay-b6dfc3bd2ed4e69beaafb750c868c4200ac84223.tar.bz2 ponysay-b6dfc3bd2ed4e69beaafb750c868c4200ac84223.zip |
typo in code make e.g fillycadance draw incorrectly
-rwxr-xr-x | ponysay | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1356,7 +1356,7 @@ class ColourStack(): elif (1 <= p) and (p <= 9): self.stack[0][3][p - 1] = True elif (21 <= p) and (p <= 29): self.stack[0][3][p - 21] = False elif p == 39: self.stack[0][1] = None - elif p == 40: self.stack[0][2] = None + elif p == 49: self.stack[0][2] = None elif (30 <= p) and (p <= 37): self.stack[0][1] = part elif (90 <= p) and (p <= 97): self.stack[0][1] = part elif (40 <= p) and (p <= 47): self.stack[0][2] = part |