Added "Gimme" command

The Gimme command allows you to get stuff from various places
Also removed MinecraftInfo and Playback commands.
This commit is contained in:
2020-12-27 18:21:03 +00:00
parent 2a2d2a0b7e
commit 6021155289
10 changed files with 157 additions and 138 deletions

View File

@@ -2,6 +2,7 @@
<?php
use nogueiracodes\RaspberryBot\Bot\Actions\MessageLogger;
use nogueiracodes\RaspberryBot\Bot\Commands\Gimme;
use nogueiracodes\RaspberryBot\Bot\Commands\MinecraftInfo;
use nogueiracodes\RaspberryBot\Bot\Commands\NumberFact;
use nogueiracodes\RaspberryBot\Bot\Commands\SimplePlayback;
@@ -18,9 +19,8 @@ echo 'This console will now display logging output from actions and commands sen
$raspberryBot
->initialize()
->addCommand([
new SimplePlayback,
new NumberFact,
new MinecraftInfo,
new Gimme,
new Help
])
->addAction(new MessageLogger)