Skip to content

Commit

Permalink
Tweak examine text
Browse files Browse the repository at this point in the history
  • Loading branch information
Drulikar committed Jun 3, 2024
1 parent bb3604b commit 68f5711
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion code/modules/defenses/defenses.dm
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
if(ishuman(user))
message += SPAN_INFO("A multitool can be used to disassemble it.")
message += "\n"
message += SPAN_INFO("The turret is currently [locked? "locked" : "unlocked"] to non-engineers.")
message += SPAN_INFO("It is currently [locked? "locked" : "unlocked"] to non-engineers.")
message += "\n"
message += SPAN_INFO("It has [SPAN_HELPFUL("[health]/[health_max]")] health.")
message += "\n"
Expand Down
8 changes: 4 additions & 4 deletions code/modules/defenses/sentry.dm
Original file line number Diff line number Diff line change
Expand Up @@ -565,13 +565,13 @@
. = ..()
switch(battery_state)
if(TURRET_BATTERY_STATE_OK)
. += "Its battery indictor is green, fully charged."
. += SPAN_INFO("Its battery indictor is green, fully charged.")
if(TURRET_BATTERY_STATE_LOW)
. += "Its battery indictor is flashing yellow."
. += SPAN_INFO("Its battery indictor is flashing yellow.")
if(TURRET_BATTERY_STATE_CRITICAL)
. += "Its battery indictor is flashing red."
. += SPAN_INFO("Its battery indictor is flashing red.")
if(TURRET_BATTERY_STATE_DEAD)
. += "It appears to be offline."
. += SPAN_INFO("It appears to be offline.")

/obj/structure/machinery/defenses/sentry/premade/deployable/colony/landing_zone/proc/set_battery_state(state)
battery_state = state
Expand Down

0 comments on commit 68f5711

Please sign in to comment.