Config to enable premium dyes for non premium players.

This commit is contained in:
MobiusDev
2018-05-05 12:08:47 +00:00
parent 0f700c7677
commit 0e399f51a5
12 changed files with 28 additions and 4 deletions

View File

@@ -58,7 +58,7 @@ public final class RequestHennaEquip implements IClientIncomingPacket
}
int totalHennaSlots = activeChar.getHennaEmptySlots();
if (activeChar.hasPremiumStatus() && Config.PREMIUM_HENNA_SLOT_ENABLED && (activeChar.getClassId().level() > 1) && (activeChar.getHenna(4) == null))
if ((Config.PREMIUM_HENNA_SLOT_ENABLED_FOR_ALL || activeChar.hasPremiumStatus()) && Config.PREMIUM_HENNA_SLOT_ENABLED && (activeChar.getClassId().level() > 1) && (activeChar.getHenna(4) == null))
{
totalHennaSlots++;
}