Skip to content

Commit

Permalink
v2.0 (really this time)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePython10110 committed May 31, 2024
1 parent 547e5f7 commit 94aae2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions COMMANDS/damage.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
})

0 comments on commit 94aae2e

Please sign in to comment.