From 5b800bb443210587fc9059ca38631393ac94a7a5 Mon Sep 17 00:00:00 2001 From: Dragory Date: Thu, 3 Jan 2019 06:17:39 +0200 Subject: [PATCH] Fix error introduced in the update to Knub 14.0.0 in ZeppelinPlugin --- src/plugins/ZeppelinPlugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/ZeppelinPlugin.ts b/src/plugins/ZeppelinPlugin.ts index c51a54f4..21bbff2f 100644 --- a/src/plugins/ZeppelinPlugin.ts +++ b/src/plugins/ZeppelinPlugin.ts @@ -5,7 +5,7 @@ import { errorMessage, successMessage } from "../utils"; export class ZeppelinPlugin extends Plugin { protected throwPluginRuntimeError(message: string) { - throw new PluginRuntimeError(message, this.pluginName, this.guildId); + throw new PluginRuntimeError(message, this.runtimePluginName, this.guildId); } protected canActOn(member1, member2) {