From 94aae2eb8c2e2ddab0401254055a703d297346f0 Mon Sep 17 00:00:00 2001 From: ThePython10110 Date: Fri, 31 May 2024 09:41:30 -0700 Subject: [PATCH] v2.0 (really this time) --- COMMANDS/damage.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/COMMANDS/damage.lua b/COMMANDS/damage.lua index f33db45..12001f4 100644 --- a/COMMANDS/damage.lua +++ b/COMMANDS/damage.lua @@ -140,9 +140,9 @@ better_commands.register_command("damage", { if count < 1 then return false, better_commands.error(S("No entity was found")), 0 elseif count == 1 then - return true, S("Damaged @1", last), 1 + return true, S("Applied @1 damage to @2", amount, last), 1 else - return true, S("Damaged @1 entities", count), count + return true, S("Applied @1 damage to @2 entities", count), count end end }) \ No newline at end of file