From 0de45b63d0f4ffb9fc2c3ccf8f887ad85319f7a5 Mon Sep 17 00:00:00 2001 From: KaidoRen Date: Wed, 15 May 2019 08:34:22 +0500 Subject: [PATCH] Revert "Displaying the URL of the plugin if it is present" This reverts commit 9e31230368449966d16635c696d97c04adadeaa9. --- amxmodx/srvcmd.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/amxmodx/srvcmd.cpp b/amxmodx/srvcmd.cpp index 01c629c5..51992cba 100755 --- a/amxmodx/srvcmd.cpp +++ b/amxmodx/srvcmd.cpp @@ -79,11 +79,7 @@ void amx_command() print_srvconsole(" Name: %s\n", plugin->getTitle()); print_srvconsole(" Version: %s\n", plugin->getVersion()); print_srvconsole(" Author: %s\n", plugin->getAuthor()); - - if (auto url = plugin->getUrl(); url[0]) - { - print_srvconsole(" URL: %s\n", plugin->getUrl()); - } + print_srvconsole(" URL: %s\n", plugin->getUrl()); auto description = plugin->getDescription(); if (description[0] != '\0')