Fix issue with ship bonuses not applying when fit is projected (#374)

This commit is contained in:
blitzmann
2015-10-05 18:10:39 -04:00
parent 3f6c484c99
commit f17fb82ce7
3 changed files with 14 additions and 2 deletions

View File

@@ -121,3 +121,8 @@ class Ship(ItemAttrShortcut, HandledItem):
def __deepcopy__(self, memo):
copy = Ship(self.item)
return copy
def __repr__(self):
return "Ship(ID={}, name={}) at {}".format(
self.item.ID, self.item.name, hex(id(self))
)