Added Squids with basic AI

This commit is contained in:
Shoghi Cervantes
2015-04-09 00:12:50 +02:00
parent 02ba9ffc16
commit 69f841a00c
10 changed files with 273 additions and 11 deletions

View File

@@ -39,6 +39,7 @@ use pocketmine\entity\Human;
use pocketmine\entity\Item as DroppedItem;
use pocketmine\entity\PrimedTNT;
use pocketmine\entity\Snowball;
use pocketmine\entity\Squid;
use pocketmine\entity\Villager;
use pocketmine\entity\Zombie;
use pocketmine\event\HandlerList;
@@ -2415,6 +2416,7 @@ class Server{
Entity::registerEntity(Snowball::class);
Entity::registerEntity(Villager::class);
Entity::registerEntity(Zombie::class);
Entity::registerEntity(Squid::class);
Entity::registerEntity(Human::class, true);
}