X Tutup
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/pigui/modules/info-view/01-ship-info.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ local function shipStats()
local up_acc = player:GetAcceleration("up")

local atmo_shield = equipSet:GetInstalledOfType("hull.atmo_shield")[1]
local atmo_shield_cap = player["atmo_shield_cap"] or 1
local atmo_shield_cap = math.max(player["atmo_shield_cap"], 1)

textTable.draw({
{ l.REGISTRATION_NUMBER..":", shipLabel},
Expand Down
X Tutup