Fixed the inverted logic in the missing mod check.
This commit is contained in:
parent
b23798f67a
commit
6c6d4a7ed9
1 changed files with 2 additions and 2 deletions
|
@ -73,12 +73,12 @@ public class PacketHandlerServer implements IPacketHandler
|
|||
{
|
||||
continue;
|
||||
}
|
||||
boolean found = true;
|
||||
boolean found = false;
|
||||
for (String modName : pkt.Mods)
|
||||
{
|
||||
if (modName.equals(mod.toString()))
|
||||
{
|
||||
found = false;
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue