diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-22 21:52:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-22 21:52:11 +0300 |
commit | 79e675ac0375f9d153d9eda9980635af5c9514c5 (patch) | |
tree | 02d94e36aa7de634c8188daca8f382f5871faca5 /hercules | |
parent | 45af2b33e90066e8d6ffa309de4b3eb6412fd877 (diff) | |
download | evol-tools-79e675ac0375f9d153d9eda9980635af5c9514c5.tar.gz evol-tools-79e675ac0375f9d153d9eda9980635af5c9514c5.tar.bz2 evol-tools-79e675ac0375f9d153d9eda9980635af5c9514c5.tar.xz evol-tools-79e675ac0375f9d153d9eda9980635af5c9514c5.zip |
hercules: fix typo defence -> defense.
Diffstat (limited to 'hercules')
-rw-r--r-- | hercules/code/servertoclient/items.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hercules/code/servertoclient/items.py b/hercules/code/servertoclient/items.py index 9acb581..89a9b96 100644 --- a/hercules/code/servertoclient/items.py +++ b/hercules/code/servertoclient/items.py @@ -45,7 +45,7 @@ def convertItems(): weight = rows[6] atk = rows[7] matk = rows[8] - defence = rows[9] + defense = rows[9] attackRange = rows[10] slots = rows[11] equipJobs = rows[12] @@ -73,7 +73,7 @@ def convertItems(): statStr = prepStat(atk, "attack") statStr = statStr + prepStat(matk, "mattack") - statStr = statStr + prepStat(defence, "defence") + statStr = statStr + prepStat(defense, "defense") statStr = statStr + prepStat(weight, "weight") statStr = statStr + prepStat(attackRange, "range") statStr = statStr + prepStat(delay, "speed") |