Skip to content

Commit

Permalink
Fix initial value of max wireless capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
Sampsa committed Dec 9, 2023
1 parent 37e6956 commit 187340b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hud/powerdisplay.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ end

local function getMaxEU()
file = io.open("/home/NIDAS/settings/maxWireless", "r")
local maxValue = 0
local maxValue = 10e5
if file ~= nil then
local data = serialization.unserialize(file:read("*a"))
if maxValue then
Expand Down
2 changes: 1 addition & 1 deletion nidas_version.lua
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return "1.50"
return "1.51"

0 comments on commit 187340b

Please sign in to comment.