Skip to content

Commit

Permalink
fix: Fix crash from previous update
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon authored Aug 27, 2024
1 parent 58a5584 commit 0ae59de
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion shared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@ local power_usages = {
['480kW'] = 8000,
['600kW'] = 10000,
['1.2MW'] = 20000,
['2.4MW'] = 40000
['2.4MW'] = 40000,
['3.6MW'] = 40000/2.4*3.6,
['5MW'] = 40000/2.4*5,
['10MW'] = 40000/2.4*10,
['20MW'] = 40000/2.4*20,
['50MW'] = 40000/2.4*50,
}

local base_usage = 1000000 / 60
Expand Down

0 comments on commit 0ae59de

Please sign in to comment.