public virtual void AdjustServerCommandOperations(ref ServerCommandOperations cmd) { //JO doesn't have setgame command, the rest commands match if (cmd >= ServerCommandOperations.SetGame) { cmd++; } }
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; } }
public virtual void AdjustServerCommandOperations(ref ServerCommandOperations cmd) { }