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/CommandExtensions/src/Commands/ListLandProtection.cs

    r391 r402  
    6060                                                userIdFilter = ci.InternalId;
    6161                                        } else {
    62                                                 SdtdConsole.Instance.Output ("Player name or entity id \"" + _params [0] + "\" not found.");
     62                                                SdtdConsole.Instance.Output ($"Player name or entity id \"{_params [0]}\" not found.");
    6363                                                return;
    6464                                        }
     
    8282                                        } catch (Exception e) {
    8383                                                SdtdConsole.Instance.Output ("Error getting current player's position");
    84                                                 Log.Out ("Error in ListLandProtection.Run: " + e);
     84                                                Log.Out ($"Error in ListLandProtection.Run: {e}");
    8585                                                return;
    8686                                        }
     
    114114                                foreach (Vector3i v in claimPositions) {
    115115                                        if (parseableOutput) {
    116                                                 SdtdConsole.Instance.Output ("LandProtectionOf: id=" + claimOwner.PlatformId +
    117                                                                              ", playerName=" + claimOwner.Name + ", location=" + v);
     116                                                SdtdConsole.Instance.Output (
     117                                                        $"LandProtectionOf: id={claimOwner.PlatformId}, playerName={claimOwner.Name}, location={v}");
    118118                                        } else {
    119                                                 SdtdConsole.Instance.Output ("   (" + v + ")");
     119                                                SdtdConsole.Instance.Output ($"   ({v})");
    120120                                        }
    121121                                }
     
    123123
    124124                        if (userIdFilter == null) {
    125                                 SdtdConsole.Instance.Output ("Total of " + ppl.m_lpBlockMap.Count + " keystones in the game");
     125                                SdtdConsole.Instance.Output ($"Total of {ppl.m_lpBlockMap.Count} keystones in the game");
    126126                        }
    127127                }
Note: See TracChangeset for help on using the changeset viewer.