From d2573b84dd52c06c723953ef66da4af8937a5a53 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Mon, 11 Mar 2013 17:15:34 +0000 Subject: Initial nether composition generator git-svn-id: http://mc-server.googlecode.com/svn/trunk@1266 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Protocol/Protocol125.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/Protocol/Protocol125.cpp') diff --git a/source/Protocol/Protocol125.cpp b/source/Protocol/Protocol125.cpp index 0b4b0f942..9514fb278 100644 --- a/source/Protocol/Protocol125.cpp +++ b/source/Protocol/Protocol125.cpp @@ -461,7 +461,7 @@ void cProtocol125::SendLogin(const cPlayer & a_Player, const cWorld & a_World) WriteString(""); // Username, not used WriteString("default"); // Level type WriteInt ((int)a_Player.GetGameMode()); - WriteInt (0); // TODO: Dimension (Nether / Overworld / End) + WriteInt ((int)(a_World.GetDimension())); WriteByte (2); // TODO: Difficulty WriteByte (0); // Unused WriteByte (60); // Client list width or something @@ -600,7 +600,7 @@ void cProtocol125::SendRespawn(void) { cCSLock Lock(m_CSPacket); WriteByte (PACKET_RESPAWN); - WriteInt (0); // TODO: Dimension; 0 = Overworld + WriteInt ((int)(m_Client->GetPlayer()->GetWorld()->GetDimension())); WriteByte (2); // TODO: Difficulty; 2 = Normal WriteByte ((char)m_Client->GetPlayer()->GetGameMode()); WriteShort (256); // Current world height -- cgit v1.2.3