local playing bugfixes

This commit is contained in:
Max-Wilhelm Bruker
2010-08-11 04:23:12 +02:00
parent 00077565ab
commit 168d184e8f
21 changed files with 71 additions and 52 deletions

View File

@@ -196,10 +196,8 @@ bool Server_Player::deleteCounter(int counterId)
return true;
}
bool Server_Player::sendProtocolItem(ProtocolItem *item, bool deleteItem)
void Server_Player::sendProtocolItem(ProtocolItem *item, bool deleteItem)
{
if (handler)
return handler->sendProtocolItem(item, deleteItem);
else
return true;
handler->sendProtocolItem(item, deleteItem);
}