diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-01-28 01:38:16 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-01-28 01:38:16 +0200 |
commit | 64b59757322e29c331c0a75262baec4382673e6f (patch) | |
tree | b1404f42db92b92202655bdd4f13a6c4c7fdd39d /src/inventory.cpp | |
parent | bd100c5483eb77a27eeac4e476c81a1bf6afc710 (diff) | |
download | minetest-64b59757322e29c331c0a75262baec4382673e6f.tar.gz minetest-64b59757322e29c331c0a75262baec4382673e6f.tar.bz2 minetest-64b59757322e29c331c0a75262baec4382673e6f.zip |
Now texture handling is fast. Also now players are saved on disk.
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 713adefdf..cbe66edb0 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -217,7 +217,7 @@ void InventoryList::serialize(std::ostream &os) os<<"\n"; } - os<<"end\n"; + os<<"EndInventoryList\n"; } void InventoryList::deSerialize(std::istream &is) @@ -238,7 +238,7 @@ void InventoryList::deSerialize(std::istream &is) std::string name; std::getline(iss, name, ' '); - if(name == "end") + if(name == "EndInventoryList") { break; } @@ -497,7 +497,7 @@ void Inventory::serialize(std::ostream &os) list->serialize(os); } - os<<"end\n"; + os<<"EndInventory\n"; } void Inventory::deSerialize(std::istream &is) @@ -514,7 +514,7 @@ void Inventory::deSerialize(std::istream &is) std::string name; std::getline(iss, name, ' '); - if(name == "end") + if(name == "EndInventory") { break; } |