test code for notEnemy

This commit is contained in:
2023-04-22 18:08:40 -05:00
parent 344c5900b8
commit a3170bfb4b
+1 -1
View File
@@ -1720,7 +1720,7 @@ public class Mob extends AbstractIntelligenceAgent {
} }
// Combine mobbase and mob aggro arrays into one bitvector // Combine mobbase and mob aggro arrays into one bitvector
EnumBitSet<Enum.MonsterType> notEnemyTester = this.getMobBase().notEnemy;
this.notEnemy.addAll(this.getMobBase().notEnemy); this.notEnemy.addAll(this.getMobBase().notEnemy);
this.enemy.addAll(this.getMobBase().enemy); this.enemy.addAll(this.getMobBase().enemy);