Skip to content

Commit

Permalink
fix event call
Browse files Browse the repository at this point in the history
  • Loading branch information
Brokkonaut committed Oct 6, 2023
1 parent 09d2923 commit c209339
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -119,7 +119,7 @@ public void onGlobalData(GlobalDataEvent e) {
String property = dis.readUTF();
String value = dis.readUTF();
properties.put(property, value);
plugin.getServer().getPluginManager().callEvent(new GlobalPlayerPropertyChangedEvent(e.getSource(), target, property, null));
plugin.getServer().getPluginManager().callEvent(new GlobalPlayerPropertyChangedEvent(e.getSource(), target, property, value));
}
}
}
Expand Down

0 comments on commit c209339

Please sign in to comment.