Style fixes.
This commit is contained in:
parent
30b083ed63
commit
aae90c2cf0
@ -121,12 +121,14 @@ public:
|
|||||||
|
|
||||||
// If on a block that can only hold a torch if torch is standing on it, return that face
|
// If on a block that can only hold a torch if torch is standing on it, return that face
|
||||||
if (
|
if (
|
||||||
((BlockInQuestion == E_BLOCK_GLASS) ||
|
(
|
||||||
|
(BlockInQuestion == E_BLOCK_GLASS) ||
|
||||||
(BlockInQuestion == E_BLOCK_FENCE) ||
|
(BlockInQuestion == E_BLOCK_FENCE) ||
|
||||||
(BlockInQuestion == E_BLOCK_NETHER_BRICK_FENCE) ||
|
(BlockInQuestion == E_BLOCK_NETHER_BRICK_FENCE) ||
|
||||||
(BlockInQuestion == E_BLOCK_COBBLESTONE_WALL) ||
|
(BlockInQuestion == E_BLOCK_COBBLESTONE_WALL) ||
|
||||||
(BlockInQuestion == E_BLOCK_STONE_SLAB) ||
|
(BlockInQuestion == E_BLOCK_STONE_SLAB) ||
|
||||||
(BlockInQuestion == E_BLOCK_WOODEN_SLAB)) &&
|
(BlockInQuestion == E_BLOCK_WOODEN_SLAB)
|
||||||
|
) &&
|
||||||
(Face == BLOCK_FACE_TOP)
|
(Face == BLOCK_FACE_TOP)
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
@ -201,7 +201,7 @@ void cProtocolRecognizer::SendDisconnect(const AString & a_Reason)
|
|||||||
SendData((const char *)&Packet, 1); // WriteByte()
|
SendData((const char *)&Packet, 1); // WriteByte()
|
||||||
|
|
||||||
AString UTF16 = UTF8ToRawBEUTF16(a_Reason.c_str(), a_Reason.length());
|
AString UTF16 = UTF8ToRawBEUTF16(a_Reason.c_str(), a_Reason.length());
|
||||||
static const short Size = htons((short)(UTF16.size() / 2));
|
static const u_short Size = htons((u_short)(UTF16.size() / 2));
|
||||||
SendData((const char *)&Size, 2); // WriteShort()
|
SendData((const char *)&Size, 2); // WriteShort()
|
||||||
SendData(UTF16.data(), UTF16.size()); // WriteString()
|
SendData(UTF16.data(), UTF16.size()); // WriteString()
|
||||||
}
|
}
|
||||||
|
@ -1822,7 +1822,8 @@ void cRankManager::ClearPlayerRanks(void)
|
|||||||
ASSERT(m_IsInitialized);
|
ASSERT(m_IsInitialized);
|
||||||
cCSLock Lock(m_CS);
|
cCSLock Lock(m_CS);
|
||||||
|
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
SQLite::Statement stmt(m_DB, "DELETE FROM PlayerRank");
|
SQLite::Statement stmt(m_DB, "DELETE FROM PlayerRank");
|
||||||
stmt.exec();
|
stmt.exec();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user