Remove infinite loop

This commit is contained in:
Matsv 2016-10-01 20:26:04 +02:00
parent 59620f7f93
commit 3de961f641
No known key found for this signature in database
GPG Key ID: 97CEC2A2EA31350F

View File

@ -19,7 +19,7 @@ public class EntityTracker extends StoredObject {
}
public void removeEntity(int entityId) {
removeEntity(entityId);
clientEntityTypes.remove(entityId);
if (isHologram(entityId))
removeHologram(entityId);
}