1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-21 11:13:00 +01:00

And it compiles again!

This commit is contained in:
Shane Freeder
2019-09-26 08:50:33 +01:00
parent fd7bcc4a32
commit c0bfdd34b7
4 changed files with 6 additions and 7 deletions

View File

@@ -170,9 +170,9 @@ public class EventManager {
return event;
}
public static McMMOPlayerProfileLoadEvent callPlayerProfileLoadEvent(Player player, PlayerProfile profile){
public McMMOPlayerProfileLoadEvent callPlayerProfileLoadEvent(Player player, PlayerProfile profile){
McMMOPlayerProfileLoadEvent event = new McMMOPlayerProfileLoadEvent(player, profile);
mcMMO.p.getServer().getPluginManager().callEvent(event);
pluginRef.getServer().getPluginManager().callEvent(event);
return event;
}