diff options
-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() |