Skip to content

Commit c2b3a65

Browse files
committed
oversight - don't recalculate player
1 parent 4d2b2c5 commit c2b3a65

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

dist/AztecTabCompleter.jar

-2 Bytes
Binary file not shown.

src/com/github/crashdemons/aztectabcompleter/AZTabPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public void onPacketSending (PacketEvent event) {
121121
pl.log("Could not resend to player (null) - they logged out too soon?");
122122
return;
123123
}
124-
ProtocolLibrary.getProtocolManager().sendServerPacket(event.getPlayer(), packet, false);//send packet - disable further filtering.
124+
ProtocolLibrary.getProtocolManager().sendServerPacket(p, packet, false);//send packet - disable further filtering.
125125
}catch(InvocationTargetException e){
126126
e.printStackTrace();
127127
}

src/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: AztecTabCompleter
22
main: com.github.crashdemons.aztectabcompleter.AZTabPlugin
3-
version: 0.17.1 (alpha)
3+
version: 0.17.2 (alpha)
44
author: crashdemons
55
description: Filters command tab-complete suggestions by whitelist.
66
website: https://github.com/crashdemons

0 commit comments

Comments
 (0)