From 087df45a3c4b4463bf0a6c0584645c6f652876cf Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 3 Jun 2019 16:17:12 +0100 Subject: [PATCH] added some effect ID constants --- src/pocketmine/entity/effect/Effect.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pocketmine/entity/effect/Effect.php b/src/pocketmine/entity/effect/Effect.php index 5910e8eea..28832b175 100644 --- a/src/pocketmine/entity/effect/Effect.php +++ b/src/pocketmine/entity/effect/Effect.php @@ -59,6 +59,9 @@ class Effect{ public const LEVITATION = 24; //TODO public const FATAL_POISON = 25; public const CONDUIT_POWER = 26; + public const SLOW_FALLING = 27; + public const BAD_OMEN = 28; + public const VILLAGE_HERO = 29; /** @var Effect[] */ protected static $effects = [];