diff -r 9cb6990af584 -r 54a78ec6aac4 hedgewars/uCommands.pas --- a/hedgewars/uCommands.pas Sun Nov 21 19:07:43 2010 +0300 +++ b/hedgewars/uCommands.pas Sun Nov 21 19:14:45 2010 +0300 @@ -17,7 +17,7 @@ implementation uses Types, uConsts, uIO, uMobile, - uRandom, uChat, SDLh, uScript, uTypes, + uRandom, SDLh, uScript, uTypes, uVariables, uConsole, uUtils; type PVariable = ^TVariable; @@ -163,10 +163,6 @@ RegisterVariable('zoomin' , vtCommand, @chZoomIn , true ); RegisterVariable('zoomout' , vtCommand, @chZoomOut , true ); RegisterVariable('zoomreset',vtCommand, @chZoomReset , true ); - RegisterVariable('history' , vtCommand, @chHistory , true ); - RegisterVariable('chat' , vtCommand, @chChat , true ); - RegisterVariable('say' , vtCommand, @chSay , true ); - RegisterVariable('team' , vtCommand, @chTeamSay , true ); RegisterVariable('ammomenu', vtCommand, @chAmmoMenu , true); RegisterVariable('+precise', vtCommand, @chPrecise_p , false); RegisterVariable('-precise', vtCommand, @chPrecise_m , false);