1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Convert age names over to plString

This commit is contained in:
2015-01-03 01:56:59 -05:00
parent b6bbf8419a
commit 374b8b0531
19 changed files with 101 additions and 133 deletions

View File

@ -3916,7 +3916,7 @@ PF_CONSOLE_CMD( Nav, ExcludePage, "string pageName", "Excludes the given page fr
{
char str[ 256 ];
sprintf( str, "Page %s excluded from load", (char *)params[ 0 ] );
plAgeLoader::GetInstance()->AddExcludedPage( params[ 0 ] );
plAgeLoader::GetInstance()->AddExcludedPage( (char*)params[ 0 ] );
PrintString( str );
}
}