client.cpp: typo fix and break; fix to make some compilers happy

master
Loic Blot 2015-03-13 22:08:41 +01:00
parent 083c8c734e
commit 0e93eefb8f
1 changed files with 2 additions and 1 deletions

View File

@ -951,7 +951,7 @@ void Client::interact(u8 action, const PointedThing& pointed)
{
if(m_state != LC_Ready) {
errorstream << "Client::interact() "
"cancelled (not connected)"
"Canceled (not connected)"
<< std::endl;
return;
}
@ -1296,6 +1296,7 @@ Inventory* Client::getInventory(const InventoryLocation &loc)
break;
default:
FATAL_ERROR("Invalid inventory location type.");
break;
}
return NULL;
}