From 81417a503101bac42dcc7f87dc20bf0043e54179 Mon Sep 17 00:00:00 2001 From: Shish Date: Wed, 24 Jun 2020 15:00:44 +0100 Subject: [PATCH] make info command match help text --- ext/et/main.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/et/main.php b/ext/et/main.php index eafc5cdc..7d7cefdc 100644 --- a/ext/et/main.php +++ b/ext/et/main.php @@ -36,10 +36,10 @@ class ET extends Extension public function onCommand(CommandEvent $event) { if ($event->cmd == "help") { - print "\tget-info\n"; + print "\tshimmie-info\n"; print "\t\tList a bunch of info\n\n"; } - if ($event->cmd == "info") { + if ($event->cmd == "shimmie-info") { print($this->to_yaml($this->get_info())); } }