Well im really doesn't know how to fix that error: PocketMine-MP Crash Dump Fri Aug 26 21:05:39 WIB 2022 PocketMine-MP version: 4.6.1+dev [Protocol 534] Git commit: ee51af8d637cdcac5c60345ca2d60a6a2b05d880 PHP version: 8.0.19 OS: WINNT, win THIS CRASH WAS CAUSED BY A PLUGIN BAD PLUGIN: BedWars Error: Typed property BedWars\game\GameListener::$game must not be accessed before initialization File: plugins/BedWars/src/BedWars/game/GameListener Line: 167 Type: Error As my varrable was set as: private Game $game; if ($this->game->getMode()){ } Any solutions ?
Your variable is not set, just declared. It holds no value and therefore is "undefined". Define it with `$this->game = ...`.