mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-19 19:18:50 +01:00
Little QOL change for AI cyborg display power (#83625)
## About The Pull Request Slightly changes the formating from ugly 1e777 numbers to neat Jules format. ## FROM  ## TO  ## Why It's Good For The Game Much prettier stat panel and easier to read ## Changelog 🆑 qol: Cyborgs on AI statpanel now have jules energy format. /🆑
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
var/obj/machinery/ai_voicechanger/ai_voicechanger = null // reference to machine that holds the voicechanger
|
||||
var/malfhacking = FALSE // More or less a copy of the above var, so that malf AIs can hack and still get new cyborgs -- NeoFite
|
||||
/// List of hacked APCs
|
||||
var/list/hacked_apcs = list()
|
||||
var/list/hacked_apcs = list()
|
||||
var/malf_cooldown = 0 //Cooldown var for malf modules, stores a worldtime + cooldown
|
||||
|
||||
var/obj/machinery/power/apc/malfhack
|
||||
@@ -333,7 +333,7 @@
|
||||
else if(!connected_robot.cell || connected_robot.cell.charge <= 0)
|
||||
robot_status = "DEPOWERED"
|
||||
//Name, Health, Battery, Model, Area, and Status! Everything an AI wants to know about its borgies!
|
||||
. += "[connected_robot.name] | S.Integrity: [connected_robot.health]% | Cell: [connected_robot.cell ? "[connected_robot.cell.charge]/[connected_robot.cell.maxcharge]" : "Empty"] | \
|
||||
. += "[connected_robot.name] | S.Integrity: [connected_robot.health]% | Cell: [connected_robot.cell ? "[display_energy(connected_robot.cell.charge)]/[display_energy(connected_robot.cell.maxcharge)]" : "Empty"] | \
|
||||
Model: [connected_robot.designation] | Loc: [get_area_name(connected_robot, TRUE)] | Status: [robot_status]"
|
||||
. += "AI shell beacons detected: [LAZYLEN(GLOB.available_ai_shells)]" //Count of total AI shells
|
||||
|
||||
|
||||
Reference in New Issue
Block a user