1
0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-23 12:09:31 +01:00

Fix StackOverflowError with AreaEffectCloudApplyEvent.getEntity()

By: BlackHole <black-hole@live.com>
This commit is contained in:
Bukkit/Spigot 2016-03-20 22:16:06 +01:00
parent 032db7ea4f
commit c77cf1cf71

View File

@ -27,7 +27,7 @@ public class AreaEffectCloudApplyEvent extends EntityEvent {
@Override
public AreaEffectCloud getEntity() {
return (AreaEffectCloud) getEntity();
return (AreaEffectCloud) entity;
}
/**