Skip to content

Commit

Permalink
MCPainter
Browse files Browse the repository at this point in the history
CHG: Temporary removed HD image
  • Loading branch information
prime authored and prime committed Feb 2, 2014
1 parent 12193c2 commit 70001e8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public final class Commands {
public final static String COMMAND_MAIN = "MCPainter";
public final static String COMMAND_IMAGE = "Image";
public final static String COMMAND_IMAGEMAP = "ImageMap";
public final static String COMMAND_IMAGEHD = "ImageHd";
// public final static String COMMAND_IMAGEHD = "ImageHd";
public final static String COMMAND_BLOCK = "Block";
public final static String COMMAND_STATUE = "Statue";
public final static String COMMAND_RELOAD = "Reload";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public HdImageCommand(MapHelper mapHelper) {

public void Execute(PluginMain sender, Player player, IWorldEdit worldEdit, String[] args) {
if (args.length != 2) {
Help.ShowHelp(player, Commands.COMMAND_IMAGEHD);
// Help.ShowHelp(player, Commands.COMMAND_IMAGEHD);
return;
}

Expand Down
4 changes: 2 additions & 2 deletions MCPainter/src/org/PrimeSoft/MCPainter/Help.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ public static boolean ShowHelp(Player player, String command) {
help = HelpJobs;
} else if (command.equalsIgnoreCase(Commands.COMMAND_FILTER)) {
help = HelpFilter;
} else if (command.equalsIgnoreCase(Commands.COMMAND_IMAGEHD)) {
help = HelpHdImage;
/* } else if (command.equalsIgnoreCase(Commands.COMMAND_IMAGEHD)) {
help = HelpHdImage;*/
}
}

Expand Down
4 changes: 2 additions & 2 deletions MCPainter/src/org/PrimeSoft/MCPainter/PluginMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,9 @@ public boolean onCommand(CommandSender sender, Command command, String label, St
} else if (name.equalsIgnoreCase(Commands.COMMAND_IMAGEMAP)) {
doMap(player, args);
return true;
} else if (name.equalsIgnoreCase(Commands.COMMAND_IMAGEHD)) {
/* } else if (name.equalsIgnoreCase(Commands.COMMAND_IMAGEHD)) {
doHdImage(player, args);
return true;
return true;*/
} else if (name.equalsIgnoreCase(Commands.COMMAND_PURGE)) {
doPurge(player, args);
return true;
Expand Down
2 changes: 1 addition & 1 deletion MCPainter/src/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: MCPainter
main: org.PrimeSoft.MCPainter.PluginMain
version: 1.0-RC4-DEV
version: 1.0-RC4
website: http://dev.bukkit.org/server-mods/mcpainter/
description: Provides some basic features to draw using blocks.
authors: [SBPrime]
Expand Down

0 comments on commit 70001e8

Please sign in to comment.