Allow adding items to cargo via double-click

This commit is contained in:
DarkPhoenix
2021-02-19 20:39:10 +03:00
parent 961258618a
commit 6b30b2859e
2 changed files with 5 additions and 1 deletions

View File

@@ -489,6 +489,10 @@ class Item(EqBase):
def isCharge(self):
return self.category.name == 'Charge'
@property
def isCommodity(self):
return self.category.name == 'Commodity'
@property
def isDrone(self):
return self.category.name == 'Drone'