Skip to content

Commit

Permalink
client.cpp: typo fix and break; fix to make some compilers happy
Browse files Browse the repository at this point in the history
  • Loading branch information
nerzhul committed Mar 13, 2015
1 parent 083c8c7 commit 0e93eef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/client.cpp
Expand Up @@ -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;
}
Expand Down Expand Up @@ -1296,6 +1296,7 @@ Inventory* Client::getInventory(const InventoryLocation &loc)
break;
default:
FATAL_ERROR("Invalid inventory location type.");
break;
}
return NULL;
}
Expand Down

0 comments on commit 0e93eef

Please sign in to comment.