Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

5.1.1

Latest
Compare
Choose a tag to compare
@oliverschloebe oliverschloebe released this 15 Jul 17:31
· 17 commits to master since this release

Fixed updatePresence()

Usage

$discord->on('ready', function ($discord) {
	echo "Bot is ready!";
	
	$game = $discord->factory(Game::class, [
		'name' => "Watching " . $discord->users->count() . " users",
		'type' => 3
	]);
	$discord->updatePresence($game);
});