From ec6c36983c5f050f0655565cf0df8e813e5155a6 Mon Sep 17 00:00:00 2001 From: Mark Hester Date: Fri, 22 Feb 2019 18:43:21 +0000 Subject: [PATCH] Better itemdb_read_flag error message (#3971) * Removed a redundant message. Thanks to @marky291! --- src/map/itemdb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/itemdb.cpp b/src/map/itemdb.cpp index f1eb364b5c..d3e6f94c43 100644 --- a/src/map/itemdb.cpp +++ b/src/map/itemdb.cpp @@ -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; }