diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-09 02:20:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-09 02:20:57 +0300 |
commit | b0ab8927c20bf33eb964fb456039605e2f417f02 (patch) | |
tree | 2b49066f2cec886f7376b8a66e790d44492bacd5 /hercules/code | |
parent | 9395c0850da2a764fcc150b4b23e1dbdf5e75758 (diff) | |
download | evol-tools-b0ab8927c20bf33eb964fb456039605e2f417f02.tar.gz evol-tools-b0ab8927c20bf33eb964fb456039605e2f417f02.tar.bz2 evol-tools-b0ab8927c20bf33eb964fb456039605e2f417f02.tar.xz evol-tools-b0ab8927c20bf33eb964fb456039605e2f417f02.zip |
hercules: fix some typos.
Diffstat (limited to 'hercules/code')
-rw-r--r-- | hercules/code/servertoclient/sprites.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hercules/code/servertoclient/sprites.py b/hercules/code/servertoclient/sprites.py index 035540e..36cb9b3 100644 --- a/hercules/code/servertoclient/sprites.py +++ b/hercules/code/servertoclient/sprites.py @@ -328,7 +328,7 @@ def readAct(actFile): act.minorVersion = readInt8(f) act.majorVersion = readInt8(f) act.nanimations = readInt16(f) - print "{0}, {1}.{2}, {1}".format(actFile, act.majorVersion, act.minorVersion, act.nanimations) + print "{0}, {1}.{2}, {3}".format(actFile, act.majorVersion, act.minorVersion, act.nanimations) #print " animations: " + str(act.nanimations) act.animations = dict() skipData(f, 10) |