From 03636792e3a5c873439bee08ac967e340fb7f770 Mon Sep 17 00:00:00 2001 From: INSANEMODE Date: Mon, 10 Apr 2023 05:51:01 -0500 Subject: [PATCH] fix plugin not logging information when starting --- Plugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugin.cs b/Plugin.cs index 540483b..1776368 100644 --- a/Plugin.cs +++ b/Plugin.cs @@ -82,7 +82,7 @@ namespace ClanTagRankCommands //} //Config = _configurationHandler.Configuration(); string version = manager.Version; - string str = string.Format("Loaded {0} ({1}) by {2} in {3} ({4})!", (object)((IPlugin)this).Name, (object)((IPlugin)this).Version, (object)((IPlugin)this).Author, (object)"IW4MAdmin", (object)version); + string str = string.Format("Loaded {0} ({1}) by {2} in {3} ({4})!", (object)((IPluginV2)this).Name, (object)((IPluginV2)this).Version, (object)((IPluginV2)this).Author, (object)"IW4MAdmin", (object)version); _logger.LogInformation(str); _interactionRegistration.RegisterInteraction(DonatorInteraction, async (clientId, game, token) => {