Revert "Displaying the URL of the plugin if it is present"

This reverts commit 9e31230368449966d16635c696d97c04adadeaa9.
This commit is contained in:
KaidoRen 2019-05-15 08:34:22 +05:00
parent 0f5cf26270
commit 0de45b63d0

View File

@ -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')