Update XpDropPlugin.java

This commit is contained in:
Kyle
2019-11-22 11:36:16 +00:00
committed by GitHub
parent 8a4ba35cef
commit ca84d9f78f

View File

@@ -354,12 +354,11 @@ public class XpDropPlugin extends Plugin
{ {
double damageDealt = diff / HITPOINT_RATIO; double damageDealt = diff / HITPOINT_RATIO;
// DeadMan mode has an XP modifier of 10x // DeadMan mode has an XP modifier of 10x, Twisted League mode has an XP modifier of 5x
if (client.getWorldType().contains(WorldType.DEADMAN)) if (client.getWorldType().contains(WorldType.DEADMAN))
{ {
damageDealt = damageDealt / DMM_MULTIPLIER_RATIO; damageDealt = damageDealt / DMM_MULTIPLIER_RATIO;
} }
// Twisted League mode has an XP modifier of 5x
if (client.getWorldType().contains(WorldType.LEAGUE)) if (client.getWorldType().contains(WorldType.LEAGUE))
{ {
damageDealt = damageDealt / TL_MULTIPLIER_RATIO; damageDealt = damageDealt / TL_MULTIPLIER_RATIO;