16 lines
413 B
Python
16 lines
413 B
Python
# mining
|
|
#
|
|
# Used by:
|
|
# Drones from group: Mining Drone (10 of 10)
|
|
|
|
type = "passive"
|
|
grouped = True
|
|
|
|
|
|
def handler(fit, container, context):
|
|
miningDroneAmountPercent = container.getModifiedItemAttr("miningDroneAmountPercent")
|
|
if (miningDroneAmountPercent is None) or (miningDroneAmountPercent == 0):
|
|
pass
|
|
else:
|
|
container.multiplyItemAttr("miningAmount", miningDroneAmountPercent / 100)
|