We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b902fd0 commit 6fc884eCopy full SHA for 6fc884e
src/main/java/com/botdetector/BotDetectorPlugin.java
@@ -669,7 +669,7 @@ private void processPlayer(Player player)
669
670
// Get player's equipment item ids (botanicvelious/Equipment-Inspector)
671
Map<KitType, Integer> equipment = new HashMap<>();
672
- int geValue = 0;
+ long geValue = 0;
673
for (KitType kitType : KitType.values())
674
{
675
int itemId = player.getPlayerComposition().getEquipmentId(kitType);
src/main/java/com/botdetector/model/PlayerSighting.java
@@ -55,7 +55,7 @@ public class PlayerSighting
55
Map<KitType, Integer> equipment;
56
57
@SerializedName("equipment_ge")
58
- int equipmentGEValue;
+ long equipmentGEValue;
59
60
@SerializedName("world_number")
61
int worldNumber;
0 commit comments