pocketmine\level\GameRules::readFromNBT PHP Method

readFromNBT() public method

Set defined game rules from NBT.
public readFromNBT ( CompoundTag $nbt )
$nbt pocketmine\nbt\tag\CompoundTag
    public function readFromNBT(CompoundTag $nbt)
    {
        $data = [];
        self::toArray($data, $nbt);
        foreach ($data as $key => $value) {
            $this->setOrCreateGameRule($key, $value);
        }
    }