Exemple #1
0
 public virtual void AdjustServerCommandOperations(ref ServerCommandOperations cmd)
 {
     //JO doesn't have setgame command, the rest commands match
     if (cmd >= ServerCommandOperations.SetGame)
     {
         cmd++;
     }
 }
Exemple #2
0
 public virtual void AdjustServerCommandOperations(ref ServerCommandOperations cmd)
 {
     //Q3 doesn't have setgame and mapchange commands, the rest commands match
     if (cmd == ServerCommandOperations.SetGame)
     {
         cmd = ServerCommandOperations.EOF;
     }
 }
Exemple #3
0
 public virtual void AdjustServerCommandOperations(ref ServerCommandOperations cmd)
 {
 }