diff options
Diffstat (limited to 'hercules')
-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) |