From b6950fc77ccbca34d833c025095a1b1e211ff84d Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Fri, 17 Jan 2025 16:23:30 -0800 Subject: [PATCH] fix: Removes unused usings (#2071) --- Projects/UOContent/Items/Wands/BaseWand.cs | 2 -- Projects/UOContent/Items/Weapons/BaseWeapon.cs | 1 - .../Network/Packets/IncomingAccountPackets.cs | 14 -------------- 3 files changed, 17 deletions(-) diff --git a/Projects/UOContent/Items/Wands/BaseWand.cs b/Projects/UOContent/Items/Wands/BaseWand.cs index 126c777b1..4a0127192 100644 --- a/Projects/UOContent/Items/Wands/BaseWand.cs +++ b/Projects/UOContent/Items/Wands/BaseWand.cs @@ -1,12 +1,10 @@ using System; using System.Collections.Generic; using System.Runtime.CompilerServices; -using System.Text; using ModernUO.Serialization; using Server.Network; using Server.Spells; using Server.Targeting; -using Server.Text; namespace Server.Items; diff --git a/Projects/UOContent/Items/Weapons/BaseWeapon.cs b/Projects/UOContent/Items/Weapons/BaseWeapon.cs index 6c32747fe..861b9c689 100644 --- a/Projects/UOContent/Items/Weapons/BaseWeapon.cs +++ b/Projects/UOContent/Items/Weapons/BaseWeapon.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Reflection.Metadata; using System.Runtime.CompilerServices; using ModernUO.Serialization; using Server.Collections; diff --git a/Projects/UOContent/Network/Packets/IncomingAccountPackets.cs b/Projects/UOContent/Network/Packets/IncomingAccountPackets.cs index 60f32dc81..3a658effe 100644 --- a/Projects/UOContent/Network/Packets/IncomingAccountPackets.cs +++ b/Projects/UOContent/Network/Packets/IncomingAccountPackets.cs @@ -17,23 +17,9 @@ using System; using System.Buffers; using System.Collections.Generic; using System.IO; -using Server.Accounting; -using Server.Assistants; -using Server.Commands; using Server.Engines.CharacterCreation; -using Server.Engines.ConPVP; -using Server.Engines.Doom; -using Server.Engines.PartySystem; -using Server.Engines.Plants; -using Server.Engines.PlayerMurderSystem; -using Server.Engines.VeteranRewards; -using Server.Factions; -using Server.Items; using Server.Misc; using Server.Mobiles; -using Server.Regions; -using Server.Spells.Ninjitsu; -using Server.Spells.Spellweaving; namespace Server.Network;