diff --git a/logic/Gaming/ShipManager.cs b/logic/Gaming/ShipManager.cs index d2314942..7c15eac2 100755 --- a/logic/Gaming/ShipManager.cs +++ b/logic/Gaming/ShipManager.cs @@ -90,7 +90,7 @@ public void BeAttacked(Ship ship, Bullet bullet) ShipManagerLogging.logger.ConsoleLogDebug( LoggingFunctional.ShipLogInfo(ship) + " is destroyed!"); - var money = ship.GetCost(); + var money = (long)(ship.GetCost() * 0.2); bullet.Parent.AddMoney(money); ShipManagerLogging.logger.ConsoleLogDebug( LoggingFunctional.ShipLogInfo((Ship)bullet.Parent)