* Output botlib.log in a sensible place (from Erik Auerswald)

This commit is contained in:
Tim Angus 2006-04-14 20:35:47 +00:00
parent 131fb9933f
commit 0018df2cfc
2 changed files with 6 additions and 1 deletions

View file

@ -1628,6 +1628,9 @@ int BotInitLibrary(void) {
//cd directory
trap_Cvar_VariableStringBuffer("fs_cdpath", buf, sizeof(buf));
if (strlen(buf)) trap_BotLibVarSet("cddir", buf);
//home directory
trap_Cvar_VariableStringBuffer("fs_homepath", buf, sizeof(buf));
if (strlen(buf)) trap_BotLibVarSet("homedir", buf);
//
#ifdef MISSIONPACK
trap_BotLibDefine("MISSIONPACK");