Fixed attackWith that was returning !node.isWhitelist() instead of true whe it's not in effect.

This commit is contained in:
天クマ 2025-12-14 16:25:18 -03:00
commit 42ab7e4d89

View file

@ -20,6 +20,6 @@ public class attackWith implements NodeHandler {
if (matches) return node.isWhitelist(); if (matches) return node.isWhitelist();
} }
} }
return !node.isWhitelist(); return true;
} }
} }