Fixed the inverted logic in the missing mod check.

This commit is contained in:
LexManos 2012-03-12 12:18:16 -07:00
parent b23798f67a
commit 6c6d4a7ed9
1 changed files with 2 additions and 2 deletions

View File

@ -73,12 +73,12 @@ public class PacketHandlerServer implements IPacketHandler
{ {
continue; continue;
} }
boolean found = true; boolean found = false;
for (String modName : pkt.Mods) for (String modName : pkt.Mods)
{ {
if (modName.equals(mod.toString())) if (modName.equals(mod.toString()))
{ {
found = false; found = true;
break; break;
} }
} }