1
0

Fixes to redstone wire and torches

+ Wires now power blocks around the block beneath
* Torches no longer power off if it is on a linked powered block
* Enhanced code, split functions, etc.
This commit is contained in:
Tiger Wang
2013-12-14 02:40:54 +00:00
parent 4e11095441
commit 0aeece7fda
3 changed files with 37 additions and 21 deletions

View File

@@ -1415,7 +1415,7 @@ bool cPlayer::LoadFromDisk()
LOGINFO("Player %s has permissions:", m_PlayerName.c_str() );
for( PermissionMap::iterator itr = m_ResolvedPermissions.begin(); itr != m_ResolvedPermissions.end(); ++itr )
{
if( itr->second ) LOGINFO("%s", itr->first.c_str() );
if( itr->second ) LOG(" %s", itr->first.c_str() );
}
AString SourceFile;