diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-10 00:20:40 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-10 00:20:40 -0300 |
commit | 0bf745fb63a6dff80b9cd97140e8693bb3ef78f0 (patch) | |
tree | cc50717ddd16544acdea40e37fb76be5eb9e9c28 | |
parent | e63e50dc653a69eb191127fe3344196bd0c60091 (diff) | |
download | tools-0bf745fb63a6dff80b9cd97140e8693bb3ef78f0.tar.gz tools-0bf745fb63a6dff80b9cd97140e8693bb3ef78f0.tar.bz2 tools-0bf745fb63a6dff80b9cd97140e8693bb3ef78f0.tar.xz tools-0bf745fb63a6dff80b9cd97140e8693bb3ef78f0.zip |
...fix a typo.
-rwxr-xr-x | clientdata.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clientdata.py b/clientdata.py index 8b7089b..3525003 100755 --- a/clientdata.py +++ b/clientdata.py @@ -21,11 +21,11 @@ for l in a: print "[CRITICAL] Invalid item ID format: " + gid exit(1) - if rid > 2700 and rid < 2899: + if rid >= 2700 and rid <= 2899: shields.append(rid) - elif rid > 3500 and rid < 3999: + elif rid >= 3500 and rid <= 3999: swords.append(rid) - elif rid > 6000 and rid < 6499: + elif rid >= 6000 and rid <= 6499: bows.append(rid) a.close() |