mirror of
https://github.com/BentoBoxWorld/Level.git
synced 2024-11-22 10:36:08 +01:00
Lists related event in keyValue list.
https://github.com/BentoBoxWorld/bentobox/issues/352 Rather than overriding the existing getEventName() method for Events, I decided to keep it as a key-value reference.
This commit is contained in:
parent
76a65c392f
commit
71de55b3bd
@ -57,6 +57,7 @@ public class PlayerLevel {
|
||||
IslandLevelCalculatedEvent ilce = new IslandLevelCalculatedEvent(targetPlayer, island, calc.getResult());
|
||||
addon.getServer().getPluginManager().callEvent(ilce);
|
||||
Map<String, Object> keyValues = new HashMap<>();
|
||||
keyValues.put("eventName", "IslandLevelCalculatedEvent");
|
||||
keyValues.put("targetPlayer", targetPlayer);
|
||||
keyValues.put("islandUUID", island.getUniqueId());
|
||||
keyValues.put("level", calc.getResult().getLevel());
|
||||
|
Loading…
Reference in New Issue
Block a user