diff --git a/MCGalaxy/Commands/Maintenance/CmdUpdate.cs b/MCGalaxy/Commands/Maintenance/CmdUpdate.cs
deleted file mode 100644
index 4f48f7d75..000000000
--- a/MCGalaxy/Commands/Maintenance/CmdUpdate.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- Copyright 2010 MCSharp team (Modified for use with MCZall/MCLawl/MCGalaxy)
-
- Dual-licensed under the Educational Community License, Version 2.0 and
- the GNU General Public License, Version 3 (the "Licenses"); you may
- not use this file except in compliance with the Licenses. You may
- obtain a copy of the Licenses at
-
- http://www.opensource.org/licenses/ecl2.php
- http://www.gnu.org/licenses/gpl-3.0.html
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the Licenses are distributed on an "AS IS"
- BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
- or implied. See the Licenses for the specific language governing
- permissions and limitations under the Licenses.
-*/
-namespace MCGalaxy.Commands.Maintenance {
- public sealed class CmdUpdate : Command {
- public override string name { get { return "Update"; } }
- public override string type { get { return CommandTypes.Information; } }
- public override bool museumUsable { get { return true; } }
- public override LevelPermission defaultRank { get { return LevelPermission.Admin; } }
-
- public override void Use(Player p, string message) {
- if (!message.CaselessEq("force")) {
- Updater.UpdateCheck(p);
- } else {
- Updater.PerformUpdate();
- }
- }
-
- public override void Help(Player p) {
- Player.Message(p, "%T/Update");
- Player.Message(p, "%HUpdates the server if it's out of date");
- Player.Message(p, "%T/Update force");
- Player.Message(p, "%HForces the server to update");
- }
- }
-}
diff --git a/MCGalaxy/MCGalaxy_.csproj b/MCGalaxy/MCGalaxy_.csproj
index 2ca47b8e7..c1b0d52ff 100644
--- a/MCGalaxy/MCGalaxy_.csproj
+++ b/MCGalaxy/MCGalaxy_.csproj
@@ -289,7 +289,6 @@
-