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
|
|
@ -792,9 +792,7 @@ namespace Server.Items
|
|||
|
||||
public static FillableContent ArtisanGuild = new FillableContent(
|
||||
1,
|
||||
new Type[]
|
||||
{
|
||||
},
|
||||
Array.Empty<Type>(),
|
||||
new[]
|
||||
{
|
||||
new FillableEntry(1, typeof(PaintsAndBrush)),
|
||||
|
|
@ -1047,9 +1045,7 @@ namespace Server.Items
|
|||
|
||||
public static FillableContent Guard = new FillableContent(
|
||||
3,
|
||||
new Type[]
|
||||
{
|
||||
},
|
||||
Array.Empty<Type>(),
|
||||
new[]
|
||||
{
|
||||
new FillableEntry(12, Loot.ArmorTypes),
|
||||
|
|
@ -1095,9 +1091,7 @@ namespace Server.Items
|
|||
|
||||
public static FillableContent Inn = new FillableContent(
|
||||
1,
|
||||
new Type[]
|
||||
{
|
||||
},
|
||||
Array.Empty<Type>(),
|
||||
new[]
|
||||
{
|
||||
new FillableEntry(1, typeof(Candle)),
|
||||
|
|
@ -1223,9 +1217,7 @@ namespace Server.Items
|
|||
|
||||
public static FillableContent Mill = new FillableContent(
|
||||
1,
|
||||
new Type[]
|
||||
{
|
||||
},
|
||||
Array.Empty<Type>(),
|
||||
new[]
|
||||
{
|
||||
new FillableEntry(1, typeof(SackFlour))
|
||||
|
|
@ -1250,9 +1242,7 @@ namespace Server.Items
|
|||
|
||||
public static FillableContent Observatory = new FillableContent(
|
||||
1,
|
||||
new Type[]
|
||||
{
|
||||
},
|
||||
Array.Empty<Type>(),
|
||||
new[]
|
||||
{
|
||||
new FillableEntry(2, typeof(Sextant)),
|
||||
|
|
@ -1263,9 +1253,7 @@ namespace Server.Items
|
|||
|
||||
public static FillableContent Painter = new FillableContent(
|
||||
1,
|
||||
new Type[]
|
||||
{
|
||||
},
|
||||
Array.Empty<Type>(),
|
||||
new[]
|
||||
{
|
||||
new FillableEntry(1, typeof(PaintsAndBrush)),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue