mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Fixed typo in BOTLIB files
This commit is contained in:
parent
26780805c8
commit
8a5a51aba4
5 changed files with 5 additions and 5 deletions
|
@ -222,7 +222,7 @@ bot_character_t *BotLoadCharacterFromFile(char *charfile, int skill)
|
|||
source = LoadSourceFile(charfile);
|
||||
if (!source)
|
||||
{
|
||||
botimport.Print(PRT_ERROR, "counldn't load %s\n", charfile);
|
||||
botimport.Print(PRT_ERROR, "couldn't load %s\n", charfile);
|
||||
return NULL;
|
||||
} //end if
|
||||
ch = (bot_character_t *) GetClearedMemory(sizeof(bot_character_t) +
|
||||
|
|
|
@ -629,7 +629,7 @@ bot_synonymlist_t *BotLoadSynonyms(char *filename)
|
|||
source = LoadSourceFile(filename);
|
||||
if (!source)
|
||||
{
|
||||
botimport.Print(PRT_ERROR, "counldn't load %s\n", filename);
|
||||
botimport.Print(PRT_ERROR, "couldn't load %s\n", filename);
|
||||
return NULL;
|
||||
} //end if
|
||||
//
|
||||
|
|
|
@ -288,7 +288,7 @@ itemconfig_t *LoadItemConfig(char *filename)
|
|||
PC_SetBaseFolder(BOTFILESBASEFOLDER);
|
||||
source = LoadSourceFile( path );
|
||||
if( !source ) {
|
||||
botimport.Print( PRT_ERROR, "counldn't load %s\n", path );
|
||||
botimport.Print( PRT_ERROR, "couldn't load %s\n", path );
|
||||
return NULL;
|
||||
} //end if
|
||||
//initialize item config
|
||||
|
|
|
@ -224,7 +224,7 @@ weaponconfig_t *LoadWeaponConfig(char *filename)
|
|||
source = LoadSourceFile(path);
|
||||
if (!source)
|
||||
{
|
||||
botimport.Print(PRT_ERROR, "counldn't load %s\n", path);
|
||||
botimport.Print(PRT_ERROR, "couldn't load %s\n", path);
|
||||
return NULL;
|
||||
} //end if
|
||||
//initialize weapon config
|
||||
|
|
|
@ -327,7 +327,7 @@ weightconfig_t *ReadWeightConfig(char *filename)
|
|||
source = LoadSourceFile(filename);
|
||||
if (!source)
|
||||
{
|
||||
botimport.Print(PRT_ERROR, "counldn't load %s\n", filename);
|
||||
botimport.Print(PRT_ERROR, "couldn't load %s\n", filename);
|
||||
return NULL;
|
||||
} //end if
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue