MobHunting

MobHunting

114k Downloads

MH Bounty Admin Exempt Permission addition request

Zoneman1972 opened this issue · 4 comments

commented

Hi there,

Can you please add a permission node to allow me to add players/Admins to be exempted from having player bounties applied to them?
As it stands, when players put a bounty on my admins, when the admin logs in in vanish mode, mobhunting still announces that they have a bounty on them, therefore alerting the other players that the admin is actually online.
Thanks

commented

HI Zoneman

If the player is vanished with Essentials or VanishNoPacket the message will not be broadcasted. Do you use another plugin?

if (n > 0 && hasOpenBounties(player)) {
    plugin.getMessages().playerSendMessage(player, plugin.getMessages().getString("mobhunting.bounty.youarewanted"));
    if (!EssentialsCompat.isVanishedModeEnabled(player) && !VanishNoPacketCompat.isVanishedModeEnabled(player))
        plugin.getMessages().broadcast(plugin.getMessages().getString("mobhunting.bounty.playeriswanted", "playername", player.getName()), player);
}
commented
commented

hmm, yes I see. The second one should not apear... Please check if you you have disabled integration to VanishNoPacket in config.yml and please check the server log on restart use "/mh debug" and check if MobHunting hookes in to VanishNoPacket on server start.

commented

no answer