This file was deleted.

@@ -254,7 +254,7 @@
function OptionsDlg::onSleep(%this)
{
// write out the control config into the rw/config.cs file
moveMap.save( "scripts/client/config.cs" );
moveMap.save( GetUserHomeDirectory() @ "/My Games/" @ $AppName @ "/bindings.config.cs" );
}

function OptGraphicsDriverMenu::onSelect( %this, %id, %text )
@@ -127,11 +127,11 @@ function onExit()
physicsDestroy();

echo("Exporting client prefs");
export("$pref::*", "./client/prefs.cs", False);
export("$pref::*", GetUserHomeDirectory() @ "/My Games/" @ $AppName @ "/client.config.cs", False);

echo("Exporting server prefs");
export("$Pref::Server::*", "./server/prefs.cs", False);
BanList::Export("./server/banlist.cs");
export("$Pref::Server::*", GetUserHomeDirectory() @ "/My Games/" @ $AppName @ "/server.config.cs", False);
BanList::Export(GetUserHomeDirectory() @ "/My Games/" @ $AppName @ "/banlist.cs");

Parent::onExit();
}
Empty file.
@@ -34,8 +34,8 @@
// game execution if they exist.
if ( $platform !$= "xenon" )
{
if ( isFile( "./prefs.cs" ) )
exec( "./prefs.cs" );
if ( isFile( GetUserHomeDirectory() @ "/My Games/" @ $AppName @ "/server.config.cs" ) )
exec( GetUserHomeDirectory() @ "/My Games/" @ $AppName @ "/server.config.cs" );
}
else
{

This file was deleted.

Large diffs are not rendered by default.