Cleanup & Fixes for .NET 5 (#309)
- [X] Fixes several bugs - [X] Updates more ordinal issues - [X] Cleans up the code a bit - [X] Turns classes static that should have been - [X] Changes TcpServer.Instances to a HashSet Bumps release version
This commit is contained in:
parent
4ad8811df2
commit
525cda5413
266 changed files with 1348 additions and 1800 deletions
|
|
@ -71,8 +71,7 @@ namespace Server.Regions
|
|||
CommandSystem.Register("ToggleGuarded", AccessLevel.Administrator, ToggleGuarded_OnCommand);
|
||||
}
|
||||
|
||||
[Usage("CheckGuarded")]
|
||||
[Description("Returns a value indicating if the current region is guarded or not.")]
|
||||
[Usage("CheckGuarded"), Description("Returns a value indicating if the current region is guarded or not.")]
|
||||
private static void CheckGuarded_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
var from = e.Mobile;
|
||||
|
|
@ -92,8 +91,7 @@ namespace Server.Regions
|
|||
}
|
||||
}
|
||||
|
||||
[Usage("SetGuarded <true|false>")]
|
||||
[Description("Enables or disables guards for the current region.")]
|
||||
[Usage("SetGuarded <true|false>"), Description("Enables or disables guards for the current region.")]
|
||||
private static void SetGuarded_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
var from = e.Mobile;
|
||||
|
|
@ -123,8 +121,7 @@ namespace Server.Regions
|
|||
}
|
||||
}
|
||||
|
||||
[Usage("ToggleGuarded")]
|
||||
[Description("Toggles the state of guards for the current region.")]
|
||||
[Usage("ToggleGuarded"), Description("Toggles the state of guards for the current region.")]
|
||||
private static void ToggleGuarded_OnCommand(CommandEventArgs e)
|
||||
{
|
||||
var from = e.Mobile;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue