diff -r 494221b5950e -r 033114a6a960 hedgewars/uConsole.pas --- a/hedgewars/uConsole.pas Fri Oct 08 17:47:00 2010 +0200 +++ b/hedgewars/uConsole.pas Fri Oct 08 22:46:05 2010 +0400 @@ -216,6 +216,9 @@ for i:= 0 to Pred(cLinesCount) do PByte(@ConsoleLines[i])^:= 0; + // NOTE: please, keep most frequently used commands on bottom + RegisterVariable('flag' , vtCommand, @chFlag , false); + RegisterVariable('script' , vtCommand, @chScript , false); RegisterVariable('proto' , vtCommand, @chCheckProto , true ); RegisterVariable('spectate', vtBoolean, @fastUntilLag , false); RegisterVariable('capture' , vtCommand, @chCapture , true ); @@ -303,8 +306,6 @@ RegisterVariable('-cur_l' , vtCommand, @chCurL_m , true ); RegisterVariable('+cur_r' , vtCommand, @chCurR_p , true ); RegisterVariable('-cur_r' , vtCommand, @chCurR_m , true ); - RegisterVariable('flag' , vtCommand, @chFlag , false); - RegisterVariable('script' , vtCommand, @chScript , false); end; procedure freeModule;