diff --git a/MCGalaxy/Commands/Chat/CmdVote.cs b/MCGalaxy/Commands/Chat/CmdVote.cs
index 3afbc5021..eb6ed153c 100644
--- a/MCGalaxy/Commands/Chat/CmdVote.cs
+++ b/MCGalaxy/Commands/Chat/CmdVote.cs
@@ -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.");
}
}
}
diff --git a/MCGalaxy/Commands/Chat/CmdVoteResults.cs b/MCGalaxy/Commands/Chat/CmdVoteResults.cs
deleted file mode 100644
index 1e5779648..000000000
--- a/MCGalaxy/Commands/Chat/CmdVoteResults.cs
+++ /dev/null
@@ -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.");
- }
- }
-}
\ No newline at end of file
diff --git a/MCGalaxy/MCGalaxy_.csproj b/MCGalaxy/MCGalaxy_.csproj
index b586bd73c..e9c7c5b6a 100644
--- a/MCGalaxy/MCGalaxy_.csproj
+++ b/MCGalaxy/MCGalaxy_.csproj
@@ -185,7 +185,6 @@
-