Fix a bug where passing a float to getItem would make stuff choke pretty badly
This commit is contained in:
@@ -167,7 +167,7 @@ class Market():
|
||||
return self.getChildren(27)
|
||||
|
||||
def getItem(self, itemId):
|
||||
return eos.db.getItem(itemId)
|
||||
return eos.db.getItem(int(itemId))
|
||||
|
||||
def getMarketRoot(self):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user