Fixed 'Entity is already tracked' issues.

Dieser Commit ist enthalten in:
EvilSeph 2011-05-04 21:25:57 -04:00
Ursprung 41a2bc9690
Commit 1f2c44e657

Datei anzeigen

@ -69,7 +69,8 @@ public class EntityTracker {
}
if (this.b.b(entity.id)) {
throw new IllegalStateException("Entity is already tracked!");
// CraftBukkit - removed exception throw as tracking an already tracked entity theoretically shouldn't cause any issues.
//throw new IllegalStateException("Entity is already tracked!");
} else {
EntityTrackerEntry entitytrackerentry = new EntityTrackerEntry(entity, i, j, flag);