Ignore:
Timestamp:
Jan 27, 2023, 7:28:00 PM (22 months ago)
Author:
alloc
Message:
  • Major refactoring
  • Using Utf8Json for (de)serialization
  • Moving APIs to REST
  • Removing dependencies from WebServer and MapRenderer to ServerFixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/WebServer/src/Commands/WebTokens.cs

    r391 r402  
    3333                                        ExecuteList ();
    3434                                } else {
    35                                         SdtdConsole.Instance.Output ("Invalid sub command \"" + _params [0] + "\".");
     35                                        SdtdConsole.Instance.Output ($"Invalid sub command \"{_params [0]}\".");
    3636                                }
    3737                        } else {
     
    4242                private void ExecuteAdd (List<string> _params) {
    4343                        if (_params.Count != 4) {
    44                                 SdtdConsole.Instance.Output ("Wrong number of arguments, expected 4, found " + _params.Count + ".");
     44                                SdtdConsole.Instance.Output ($"Wrong number of arguments, expected 4, found {_params.Count}.");
    4545                                return;
    4646                        }
     
    7979                private void ExecuteRemove (List<string> _params) {
    8080                        if (_params.Count != 2) {
    81                                 SdtdConsole.Instance.Output ("Wrong number of arguments, expected 2, found " + _params.Count + ".");
     81                                SdtdConsole.Instance.Output ($"Wrong number of arguments, expected 2, found {_params.Count}.");
    8282                                return;
    8383                        }
Note: See TracChangeset for help on using the changeset viewer.