From 38f9510fa10791fa59be87b30ea2b64a59efcf05 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Mon, 7 Apr 2025 17:44:39 +0200 Subject: [PATCH] Moves krav maga action descriptions from names into descriptions (#90450) ## About The Pull Request Splits krav maga action descriptions from names and puts them into the desc variable instead. ## Why It's Good For The Game If you hover over a krav maga action with tooltips on (especially lung punch), the upper third of your screen will get covered by a tooltip because its a part of the actions's name. This fixes that. ## Changelog :cl: spellcheck: Moved krav maga action descriptions into descriptions /:cl: --- code/datums/martial/krav_maga.dm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/code/datums/martial/krav_maga.dm b/code/datums/martial/krav_maga.dm index 135473cdaec..25bdd31b288 100644 --- a/code/datums/martial/krav_maga.dm +++ b/code/datums/martial/krav_maga.dm @@ -18,7 +18,8 @@ return ..() /datum/action/neck_chop - name = "Neck Chop - Injures the neck, stopping the victim from speaking for a while." + name = "Neck Chop" + desc = "Injures the neck, stopping the victim from speaking for a while." button_icon = 'icons/mob/actions/actions_items.dmi' button_icon_state = "neckchop" check_flags = AB_CHECK_INCAPACITATED|AB_CHECK_HANDS_BLOCKED|AB_CHECK_CONSCIOUS @@ -36,7 +37,8 @@ source.streak = "neck_chop" /datum/action/leg_sweep - name = "Leg Sweep - Trips the victim, knocking them down for a brief moment." + name = "Leg Sweep" + desc = "Trips the victim, knocking them down for a brief moment." button_icon = 'icons/mob/actions/actions_items.dmi' button_icon_state = "legsweep" check_flags = AB_CHECK_INCAPACITATED|AB_CHECK_HANDS_BLOCKED|AB_CHECK_CONSCIOUS @@ -54,7 +56,8 @@ source.streak = "leg_sweep" /datum/action/lung_punch//referred to internally as 'quick choke' - name = "Lung Punch - Delivers a strong punch just above the victim's abdomen, constraining the lungs. The victim will be unable to breathe for a short time." + name = "Lung Punch" + desc = "Delivers a strong punch just above the victim's abdomen, constraining the lungs. The victim will be unable to breathe for a short time." button_icon = 'icons/mob/actions/actions_items.dmi' button_icon_state = "lungpunch" check_flags = AB_CHECK_INCAPACITATED|AB_CHECK_HANDS_BLOCKED|AB_CHECK_CONSCIOUS