From 60932d2bd76cbe006e297f36bc118b830ae969d3 Mon Sep 17 00:00:00 2001
From: Perttu Ahola <celeron55@gmail.com>
Date: Tue, 4 Sep 2012 23:02:56 +0300
Subject: [PATCH] Remove "Unknown inventory identifier" deserialization errors,
 because they can break forward compatibility

---
 src/inventory.cpp | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/inventory.cpp b/src/inventory.cpp
index fda11e40f..5e39a41a6 100644
--- a/src/inventory.cpp
+++ b/src/inventory.cpp
@@ -542,10 +542,6 @@ void InventoryList::deSerialize(std::istream &is)
 				throw SerializationError("too many items");
 			m_items[item_i++].clear();
 		}
-		else
-		{
-			throw SerializationError("Unknown inventory identifier");
-		}
 	}
 }
 
@@ -907,10 +903,6 @@ void Inventory::deSerialize(std::istream &is)
 
 			m_lists.push_back(list);
 		}
-		else
-		{
-			throw SerializationError("Unknown inventory identifier");
-		}
 	}
 }
 
-- 
2.25.1