summaryrefslogtreecommitdiffstats
path: root/converter/cNBTData.h
diff options
context:
space:
mode:
authoradmin@omencraft.com <admin@omencraft.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-10-30 19:15:44 +0100
committeradmin@omencraft.com <admin@omencraft.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-10-30 19:15:44 +0100
commit940d36d8a1521f171674e358dada3305e66d48da (patch)
tree0d98770a7faadd0b8b9bc470e6a7e6308a8a99b3 /converter/cNBTData.h
parentChanged long to long long so it works fine on 32bit systems (diff)
downloadcuberite-940d36d8a1521f171674e358dada3305e66d48da.tar
cuberite-940d36d8a1521f171674e358dada3305e66d48da.tar.gz
cuberite-940d36d8a1521f171674e358dada3305e66d48da.tar.bz2
cuberite-940d36d8a1521f171674e358dada3305e66d48da.tar.lz
cuberite-940d36d8a1521f171674e358dada3305e66d48da.tar.xz
cuberite-940d36d8a1521f171674e358dada3305e66d48da.tar.zst
cuberite-940d36d8a1521f171674e358dada3305e66d48da.zip
Diffstat (limited to '')
-rw-r--r--converter/cNBTData.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/converter/cNBTData.h b/converter/cNBTData.h
index 2ab5b0e21..4d5ec0beb 100644
--- a/converter/cNBTData.h
+++ b/converter/cNBTData.h
@@ -23,11 +23,11 @@ public:
TAG_Byte = 1,
TAG_Short = 2,
TAG_Int = 3,
- TAG_Long = 4,
- TAG_Float = 5,
- TAG_Double = 6,
+ TAG_Long = 4,
+ TAG_Float = 5,
+ TAG_Double = 6,
TAG_ByteArray = 7,
- TAG_String = 8,
+ TAG_String = 8,
TAG_List = 9,
TAG_Compound = 10,
TAG_NumTags // Not a real tag, but contains number of tags
@@ -53,8 +53,8 @@ public:
cNBTCompound* GetCompound( std::string Name );
cNBTList* GetList( std::string Name ) { return m_Lists[Name]; }
- cNBTList* GetCurrentList() { return m_CurrentList; }
- cNBTCompound* GetParentCompound() { return m_ParentCompound; }
+ cNBTList* GetCurrentList() { return m_CurrentList; }
+ cNBTCompound* GetParentCompound() { return m_ParentCompound; }
bool OpenList( std::string a_Name );
bool CloseList();