So, just a few minutes ago, I found this in the EntityAPI.php: PHP: public function add(Level $level, $class, $type = 0, $data = array()){ $eid = $this->eCnt++; $this->entities[$eid] = new Entity($level, $eid, $class, $type, $data); $this->server->handle("entity.add", $this->entities[$eid]); return $this->entities[$eid]; } Now, I was wondering what $class an entity could be. When I could spawn chest- and sign entities for the missing ones (My other question) that question would be answered, but, does this work? What is a chests, and what is a signs entity class? How do I get them, when there's no entity on these tiles? Or, are tiles (like Chests or Signs) even entites? Thanks!