From 35c44ede5a668605aa5a2df05d099a8a37f3e3e5 Mon Sep 17 00:00:00 2001 From: faketruth Date: Mon, 31 Oct 2011 05:12:21 +0000 Subject: Compounds are not closed double anymore Float values are actually added to 'lists' now (should do the same for the rest) Indenting while printing NBT data aligns slightly better now git-svn-id: http://mc-server.googlecode.com/svn/trunk@32 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- converter/cNBTData.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'converter/cNBTData.h') diff --git a/converter/cNBTData.h b/converter/cNBTData.h index d3e5e82b6..7d80aacb9 100644 --- a/converter/cNBTData.h +++ b/converter/cNBTData.h @@ -40,7 +40,7 @@ public: void PutInteger( std::string Name, int Value ) { m_Integers[Name] = Value; } void PutLong( std::string Name, long long Value ) { m_Longs[Name] = Value; } void PutDouble( std::string Name, double Value ) { m_Doubles[Name] = Value; } - void PutFloat( std::string Name, float Value ) { m_Floats[Name] = Value; } + void PutFloat( std::string Name, float Value ); void PutString( std::string Name, std::string Value ) { m_Strings[Name] = Value; } void PutByteArray( std::string Name, char* ByteArray ) { m_ByteArrays[Name] = ByteArray; } void PutCompound( std::string Name ); -- cgit v1.2.3