This commit is contained in:
Erik C. Thauvin 2020-03-28 15:27:49 -07:00
parent 78260381cf
commit 887ab8c959
3 changed files with 1 additions and 3 deletions

View file

@ -323,5 +323,4 @@ public final class Utils {
public static String utcDateTime(final LocalDateTime date) { public static String utcDateTime(final LocalDateTime date) {
return date.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm")); return date.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm"));
} }
} }

View file

@ -35,7 +35,6 @@ package net.thauvin.erik.mobibot.commands
import net.thauvin.erik.mobibot.Mobibot import net.thauvin.erik.mobibot.Mobibot
import net.thauvin.erik.mobibot.Utils import net.thauvin.erik.mobibot.Utils
import net.thauvin.erik.mobibot.commands.links.UrlMgr import net.thauvin.erik.mobibot.commands.links.UrlMgr
import org.jibble.pircbot.Colors
import java.lang.management.ManagementFactory import java.lang.management.ManagementFactory
class Info : AbstractCommand() { class Info : AbstractCommand() {

View file

@ -91,7 +91,7 @@ public class Versions extends AbstractCommand {
bot.send(sender, v); bot.send(sender, v);
} }
} else { } else {
bot.helpDefault(sender, isOp); bot.helpDefault(sender, false);
} }
} }