From 13c052eb2b6d560418fbbf4ea01f13713f91c0fe Mon Sep 17 00:00:00 2001 From: 1080pCat <96908085+1080pCat@users.noreply.github.com> Date: Sun, 23 Jun 2024 08:43:22 +1000 Subject: [PATCH] Fixes the power biochip mentioning power gloves (#25916) * Update click_override.dm * also a comment * gramor * guh --- code/_onclick/click_override.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/_onclick/click_override.dm b/code/_onclick/click_override.dm index 1309e3c9cdc..38cbf357bf9 100644 --- a/code/_onclick/click_override.dm +++ b/code/_onclick/click_override.dm @@ -53,13 +53,13 @@ if(!P) return if(world.time < P.last_shocked + P.shock_delay) - to_chat(user, "The gloves are still recharging.") + to_chat(user, "The powerchip is still recharging.") return FALSE var/turf/T = get_turf(user) var/obj/structure/cable/C = locate() in T if(!P.unlimited_power) if(!C || !istype(C)) - to_chat(user, "There is no cable here to power the gloves.") + to_chat(user, "There is no cable here to power the bio-chip.") return FALSE var/turf/target_turf = get_turf(A) if(get_dist(T, target_turf) > P.shock_range) @@ -75,7 +75,7 @@ beam_from.Beam(target_atom, icon_state = "lightning[rand(1, 12)]", icon = 'icons/effects/effects.dmi', time = 6) if(isliving(target_atom)) var/mob/living/L = target_atom - var/powergrid = C.get_available_power() //We want available power, so the station being conservative doesn't mess with glove / dark bundle users + var/powergrid = C.get_available_power() //We want available power, so the station being conservative doesn't mess with the power biochip / dark bundle users if(user.a_intent == INTENT_DISARM) add_attack_logs(user, L, "shocked with power bio-chip.") L.apply_damage(60, STAMINA)