Skip to content

Commit

Permalink
Fix message not send to player for money give (fix pavog#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
EpiCanard committed Jul 9, 2023
1 parent f8e23ce commit 6623f3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void execute(CommandSender sender, String[] args) {
if (reciever != null) {
Common.getInstance().getServerCaller().getPlayerCaller().sendMessage(reciever.getUuid(), Common
.getInstance().getLanguageManager().parse("money_give_received", Common.getInstance().format
(worldName, currency, amount), sender.getName()), this.getName());
(worldName, currency, amount), sender.getName()));
}
}
} else {
Expand Down

0 comments on commit 6623f3b

Please sign in to comment.