I'm trying to pass my plugin object to the task but i keep getting: Uncaught exception 'UndefinedVariableException' with message 'Undefined variable: plugin' in /Users/Tim/Desktop/Pocket_Server_0.13.x_TEST/plugins/Server_Core/src/robske_110/ServerCore/Ampel.php:42 (I'm trying to access it with $this->plugin) Here is my Task: PHP: class Ampel extends PluginTask{ public $plugin; public function __construct(Main $plugin){ parent::__construct($plugin); $this->plugin = $plugin; }//CODE}