Remove /voteresults as it is pointless

This commit is contained in:
UnknownShadow200 2017-03-04 20:04:30 +11:00
parent 92152d2c91
commit 4df2aaf752
3 changed files with 1 additions and 41 deletions

View File

@ -49,6 +49,7 @@ namespace MCGalaxy.Commands {
public override void Help(Player p) {
Player.Message(p, "%T/vote [message]");
Player.Message(p, "%HStarts a vote for 15 seconds.");
Player.Message(p, "%HType %TY %Hor %TN %Hinto chat to vote.");
}
}
}

View File

@ -1,40 +0,0 @@
/*
Copyright 2011 MCForge
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 {
public sealed class CmdVoteResults : Command {
public override string name { get { return "voteresults"; } }
public override string shortcut { get { return "vr"; } }
public override string type { get { return CommandTypes.Chat; } }
public override bool museumUsable { get { return true; } }
public override LevelPermission defaultRank { get { return LevelPermission.Guest; } }
public CmdVoteResults() { }
public override void Use(Player p, string message) {
if (Server.YesVotes >= 1 || Server.NoVotes >= 1) {
Player.Message(p, Colors.green + "Y: " + Server.YesVotes + Colors.red + " N: " + Server.NoVotes);
} else {
Player.Message(p, "There hasn't been a vote yet!");
}
}
public override void Help(Player p) {
Player.Message(p, "%T/voteresults");
Player.Message(p, "%HSee the results of the last vote.");
}
}
}

View File

@ -185,7 +185,6 @@
<Compile Include="Commands\Chat\CmdTColor.cs" />
<Compile Include="Commands\Chat\CmdTitle.cs" />
<Compile Include="Commands\Chat\CmdVote.cs" />
<Compile Include="Commands\Chat\CmdVoteResults.cs" />
<Compile Include="Commands\Chat\CmdWhisper.cs" />
<Compile Include="Commands\Chat\MessageCmd.cs" />
<Compile Include="Commands\CmdOverseer.cs" />