SonicTHI / SaveOurShip2Experimental

Experimental branch of Save Our Ship 2
Other
230 stars 86 forks source link

Cloaking Device not working at all #99

Closed BlindedShooter closed 9 months ago

BlindedShooter commented 9 months ago

Ship Cloaking Device does not turn on, the problem was a single line from V94f7.

heatComp.myNet.StorageCapacity > 0  // This line is almost always True
// And then it turns the shield off and inactive.

fix to heatComp.myNet.StorageCapacity <= 0 solved the problem.

https://github.com/SonicTHI/SaveOurShip2Experimental/blob/25da1995f84b3a1cfc6544da02408030a2cb9f8c/Source/1.4/Building/Building_ShipCloakingDevice.cs#L34