Fixed wrong output in itemdb_read_itemdelay

This commit is contained in:
Lemongrass3110 2017-01-19 14:52:59 +01:00 committed by GitHub
parent d8768e4cae
commit 9cd1ea4ebe

View File

@ -769,7 +769,7 @@ static bool itemdb_read_itemdelay(char* str[], int columns, int current) {
if( delay < 0 )
{
ShowWarning("itemdb_read_itemdelay: Invalid delay %d for item id %hu.\n", id->delay, nameid);
ShowWarning("itemdb_read_itemdelay: Invalid delay %d for item id %hu.\n", delay, nameid);
return false;
}