Remove prints
This commit is contained in:
@@ -35,7 +35,7 @@ class Fighter(HandledItem, HandledCharge, ItemAttrShortcut, ChargeAttrShortcut):
|
||||
def __init__(self, item):
|
||||
"""Initialize a fighter from the program"""
|
||||
self.__item = item
|
||||
print self.__item.category.name
|
||||
|
||||
if self.isInvalid:
|
||||
raise ValueError("Passed item is not a Fighter")
|
||||
|
||||
|
||||
@@ -96,7 +96,6 @@ class Fit(object):
|
||||
self.__ship = Ship(item, self)
|
||||
except ValueError:
|
||||
self.__ship = Citadel(item, self)
|
||||
print self.__ship
|
||||
# @todo extra attributes is now useless, however it set to be
|
||||
# the same as ship attributes for ease (so we don't have to
|
||||
# change all instances in source). Remove this at some point
|
||||
|
||||
@@ -363,7 +363,6 @@ class Fit(object):
|
||||
|
||||
drone.amount += 1
|
||||
elif thing.category.name == "Fighter":
|
||||
print "dskfnds"
|
||||
fighter = eos.types.Fighter(thing)
|
||||
fit.projectedFighters.append(fighter)
|
||||
elif thing.group.name == "Effect Beacon":
|
||||
|
||||
Reference in New Issue
Block a user