Skip to content

Commit

Permalink
Update BluespaceHarvesterSystem.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tornado-Technology committed Dec 9, 2024
1 parent 62b986c commit 591e68a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public override void Update(float frameTime)
// The HV wires cannot transmit a lot of electricity so quickly,
// which is why it will not start.
// So this is simply using the amount of free electricity in the network.
if (harvester.ReceivedPower < harvester.DrawRate && harvester.CurrentLevel != 0)
if (harvester.ReceivedPower < GetUsagePower(harvester.CurrentLevel) && harvester.CurrentLevel != 0)
{
// If there is insufficient production,
// it will reset itself (turn off) and you will need to start it again,
Expand Down

0 comments on commit 591e68a

Please sign in to comment.