Message when claiming mine succeeds.

This commit is contained in:
2023-01-19 14:09:15 -05:00
parent 79d05f1fb2
commit 78cdb6967a
2 changed files with 4 additions and 3 deletions
@@ -47,7 +47,9 @@ public class ClaimMinePowerAction extends AbstractPowerAction {
if (mine == null)
return;
if (mine.claimMine((PlayerCharacter) source) == false)
if (mine.claimMine((PlayerCharacter) source) == true)
ChatManager.sendSystemMessage( (PlayerCharacter) source, "You successfully claimed this mine..");
else
ChatManager.sendSystemMessage( (PlayerCharacter) source, "Your attempt for to claim this mine failed.");
}