From bce82a8283454f1a29f00d20cda0b7e16e9abec1 Mon Sep 17 00:00:00 2001 From: larentoun <31931237+larentoun@users.noreply.github.com> Date: Tue, 15 Oct 2024 18:32:15 +0300 Subject: [PATCH] better --- code/modules/projectiles/guns/ballistic.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/projectiles/guns/ballistic.dm b/code/modules/projectiles/guns/ballistic.dm index 98edd43fcf093..599fc91e09e17 100644 --- a/code/modules/projectiles/guns/ballistic.dm +++ b/code/modules/projectiles/guns/ballistic.dm @@ -386,16 +386,16 @@ var/obj/item/ammo_box/magazine/old_mag = magazine if (tac_load) if (insert_magazine(user, tac_load, FALSE)) - balloon_alert(user, "снятие [magazine_wording]") + balloon_alert(user, "извлечение [magazine_wording]") else - to_chat(user, span_warning("Вы провели снятие [magazine_wording], но не можете вставить новый. Как неловко.")) + to_chat(user, span_warning("Вы извлекаете [magazine_wording], но не можете вставить новый. Как неловко.")) magazine = null else magazine = null user.put_in_hands(old_mag) old_mag.update_appearance() if (display_message) - balloon_alert(user, "снятие [magazine_wording]") + balloon_alert(user, "извлечение [magazine_wording]") update_appearance() /obj/item/gun/ballistic/can_shoot()