mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-27 06:51:30 -08:00
Fix contains checking wrong variable (#10668)
This commit is contained in:
parent
9db19fafe7
commit
7d707a431f
1 changed files with 1 additions and 1 deletions
|
|
@ -601,7 +601,7 @@ public class NetServer implements ApplicationListener{
|
|||
|
||||
@Remote(targets = Loc.client)
|
||||
public static void serverBinaryPacketReliable(Player player, String type, byte[] contents){
|
||||
if(netServer.customPacketHandlers.containsKey(type)){
|
||||
if(netServer.customBinaryPacketHandlers.containsKey(type)){
|
||||
for(var c : netServer.customBinaryPacketHandlers.get(type)){
|
||||
c.get(player, contents);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue