Skip to content

Commit

Permalink
Merge pull request #205 from pavog/fix-missing-money-give-received-me…
Browse files Browse the repository at this point in the history
…ssage

Fix message not send to receiving player on money give command
  • Loading branch information
pavog committed Jul 26, 2023
2 parents 5050598 + b37df9f commit 659ebbd
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 659ebbd

Please sign in to comment.