Remove /update, as it is incompatible with most environments, and only people with console access should be able to update the server anyways.

This commit is contained in:
UnknownShadow200 2017-08-01 08:27:08 +10:00
parent 8731f27d9f
commit 4a4a3abe96
2 changed files with 0 additions and 41 deletions

View File

@ -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");
}
}
}

View File

@ -289,7 +289,6 @@
<Compile Include="Commands\Maintenance\CmdRestart.cs" />
<Compile Include="Commands\Maintenance\CmdServer.cs" />
<Compile Include="Commands\Maintenance\CmdShutdown.cs" />
<Compile Include="Commands\Maintenance\CmdUpdate.cs" />
<Compile Include="Commands\Moderation\CmdBan.cs" />
<Compile Include="Commands\Moderation\CmdBanEdit.cs" />
<Compile Include="Commands\Moderation\CmdBanip.cs" />