Skip to content

Commit

Permalink
Fix a couple of errors from #263
Browse files Browse the repository at this point in the history
  • Loading branch information
kanthoney committed Oct 8, 2017
1 parent b7d6142 commit adb2688
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Core/Debug/OODebugTCPConsoleClient.m
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ - (void) sendDictionary:(NSDictionary *)dictionary

if (!sentOK)
{
OOLog(@"debugTCP.send.error", @"%@", @"The following packet could not be sent: %@", dictionary);
OOLog(@"debugTCP.send.error", @"The following packet could not be sent: %@", dictionary);
if(![[OODebugMonitor sharedDebugMonitor] TCPIgnoresDroppedPackets])
{
[self breakConnectionWithBadStream:_outStream];
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Entities/PlayerEntityLoadSave.m
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ - (BOOL) startScenario
NSString *path = [ResourceManager pathForFileNamed:file inFolder:@"Scenarios"];
if (path == nil)
{
OOLog(@"scenario.init.error", @"%@", @"Game file not found for scenario %@",file);
OOLog(@"scenario.init.error", @"Game file not found for scenario %@",file);
return NO;
}
BOOL result = [self loadPlayerFromFile:path asNew:YES];
Expand Down

0 comments on commit adb2688

Please sign in to comment.