Add reputation score to true hero's clan.

Contributed by Sero.
This commit is contained in:
MobiusDevelopment
2020-12-13 23:09:38 +00:00
parent 7297b8894a
commit f1d4109ec5
17 changed files with 85 additions and 0 deletions

View File

@ -6702,6 +6702,11 @@ public class PlayerInstance extends Playable
player.addItem("CoC-Hero", 35564, 1, player, true); // Ruler's Authority
player.setFame(player.getFame() + 5000);
player.sendMessage("You have been rewarded with 5.000 fame points.");
final Clan clan = player.getClan();
if (clan != null)
{
clan.addReputationScore(150000, true);
}
}
player.setTrueHero(true);
}