From 04dc114cfa8166ecbd2275f3c0a4beab9ff01379 Mon Sep 17 00:00:00 2001 From: Henri215 <77684085+Henri215@users.noreply.github.com> Date: Tue, 3 Jan 2023 19:49:33 -0300 Subject: [PATCH] Exosuit control console: cell charge now shows the real value (#20064) --- code/game/mecha/mecha_control_console.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/mecha/mecha_control_console.dm b/code/game/mecha/mecha_control_console.dm index 37b2a9e720a..44a20b00e4b 100644 --- a/code/game/mecha/mecha_control_console.dm +++ b/code/game/mecha/mecha_control_console.dm @@ -141,7 +141,7 @@ data["cell"] = M.cell if(M.cell) data["cellCharge"] = M.cell.charge - data["cellMaxCharge"] = M.cell.charge + data["cellMaxCharge"] = M.cell.maxcharge data["airtank"] = M.return_pressure() data["pilot"] = M.occupant data["location"] = get_area(M)