Changeset 2225

Show
Ignore:
Timestamp:
04/16/12 11:32:43 (14 months ago)
Author:
palota
Message:

removed commands startall, stopall

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Enemy-Territory/0.8/global_scripts/commands.gm

    r2024 r2225  
    240240        }, 
    241241}; 
    242  
    243 /////////////////////////////////////////////////////////////////////////////// 
    244  
    245 Commands["stopall"] = 
    246 { 
    247         Func = function(_params) 
    248         { 
    249                 Util.StopAllBots(); 
    250         }, 
    251  
    252         Help = 
    253         { 
    254                 "Stop All, disables movement for all bots", 
    255                 "Usage: /bot stopall", 
    256         }, 
    257 }; 
    258  
    259 /////////////////////////////////////////////////////////////////////////////// 
    260  
    261 Commands["startall"] = 
    262 { 
    263         Func = function(_params) 
    264         { 
    265                 Util.StartAllBots(); 
    266         }, 
    267  
    268         Help = 
    269         { 
    270                 "Start All, enables movement for all bots", 
    271                 "Usage: /bot startall", 
    272         }, 
    273 }; 
    274  
    275242 
    276243///////////////////////////////////////////////////////////////////////////////