Better itemdb_read_flag error message (#3971)

* Removed a redundant message.
Thanks to @marky291!
This commit is contained in:
Mark Hester
2019-02-22 18:43:21 +00:00
committed by Aleos
parent 724bd3bfde
commit ec6c36983c

View File

@@ -919,7 +919,7 @@ static bool itemdb_read_flag(char* fields[], int columns, int current) {
struct item_data *id;
if (!(id = itemdb_exists(nameid))) {
ShowError("itemdb_read_flag: Invalid item item with id %hu\n", nameid);
ShowError("itemdb_read_flag: Invalid item id %hu\n", nameid);
return true;
}