aboutsummaryrefslogtreecommitdiff
path: root/src/game/PlayerDump.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/PlayerDump.cpp')
-rw-r--r--src/game/PlayerDump.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/game/PlayerDump.cpp b/src/game/PlayerDump.cpp
index 3aceb1d1195..02a39c5ee8b 100644
--- a/src/game/PlayerDump.cpp
+++ b/src/game/PlayerDump.cpp
@@ -660,18 +660,6 @@ DumpReturn PlayerDumpReader::LoadDump(const std::string& file, uint32 account, s
ROLLBACK(DUMP_FILE_BROKEN);
break;
}
- case DTT_ITEM_TEXT: // item_text
- {
- // id
- if (!changeGuid(line, 1, itemTexts, objmgr.m_ItemTextId))
- ROLLBACK(DUMP_FILE_BROKEN);
-
- // add it to cache
- uint32 id= atoi(getnth(line,1).c_str());
- std::string text = getnth(line,2);
- objmgr.AddItemText(id,text);
- break;
- }
default:
sLog.outError("Unknown dump table type: %u",type);
break;