Skip to content

Commit

Permalink
Better itemdb_read_flag error message (#3971)
Browse files Browse the repository at this point in the history
* Removed a redundant message.
Thanks to @marky291!
  • Loading branch information
marky291 authored and aleos89 committed Feb 22, 2019
1 parent 724bd3b commit ec6c369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map/itemdb.cpp
Expand Up @@ -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;
}

Expand Down

0 comments on commit ec6c369

Please sign in to comment.