Entity#isTicking

This commit is contained in:
William Blake Galbreath 2020-10-03 21:39:07 -05:00
parent 64f9dff6ef
commit 63c427de11

View File

@ -898,5 +898,10 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
* Check if entity is in lava
*/
boolean isInLava();
/**
* Check if entity is inside a ticking chunk
*/
boolean isTicking();
// Paper end
}