Displaying the URL of the plugin if it is present

This commit is contained in:
KaidoRen 2019-05-15 10:02:29 +05:00
parent dfea6f61d2
commit 1f63a30bf0

View File

@ -79,10 +79,15 @@ void amx_command()
print_srvconsole(" Name: %s\n", plugin->getTitle());
print_srvconsole(" Version: %s\n", plugin->getVersion());
print_srvconsole(" Author: %s\n", plugin->getAuthor());
print_srvconsole(" URL: %s\n", plugin->getUrl());
auto url = plugin->getDescription();
if (url[0])
{
print_srvconsole(" URL: %s\n", plugin->getUrl());
}
auto description = plugin->getDescription();
if (description[0] != '\0')
if (description[0])
{
print_srvconsole(" Description: %s\n", description);
}