Skip to content

Commit

Permalink
Merge pull request #36 from elian1203/fix/messages-old-args
Browse files Browse the repository at this point in the history
Fix messages still using {0} for args
  • Loading branch information
elian1203 authored Aug 10, 2023
2 parents f2a2d0a + b9c000f commit a865c9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
workflow_dispatch:
push:
branches: [ '**' ]
pull_request:

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ auction.scoreboard.body=\
# <playerworld> is the world that the player is in
command.bid.blocked_world={prefix}<red>You cannot place a bid in this world!
# <requiredamount> is the required amount of money to bid
command.bid.too_low={prefix}<red>That bid is too low! You must specify a minimum bid of {0}.
command.bid.too_low={prefix}<red>That bid is too low! You must specify a minimum bid of <requiredamount>.
# <requiredamount> is the required amount of money (bid amount)
command.bid.lacking_money={prefix}<red>You do not have enough money to make that bid!
# the user has specified a bid < 0
Expand All @@ -199,6 +199,6 @@ reward.blocked_world={prefix}<red>You cannot receive items in this world.
reward.relogged_blocked_world={prefix}<red>You have winnings that cannot be claimed in this world.
# <itemworld> is the world in which the item resides
reward.wrong_world={prefix}<red>You cannot collect your winnings until you return to world <itemworld>.
reward.relogged_wrong_world={prefix}<red>You have winnings in world {0}. Return to that world to claim them.
reward.relogged_wrong_world={prefix}<red>You have winnings in world <itemworld>. Return to that world to claim them.

login.updatemessage={prefix}<blue>An update is available!

0 comments on commit a865c9a

Please sign in to comment.