From 3ef5b3952ad69f3315896b53ede5c6324a6a0645 Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 14:52:01 +0000 Subject: [PATCH] - Commented out the code which places the "Cheat - Add Card" menu command to the quest mode deck editor. There are other, safer and less buggy ways for people to cheat. :) --- src/forge/Gui_Quest_DeckEditor_Menu.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/forge/Gui_Quest_DeckEditor_Menu.java b/src/forge/Gui_Quest_DeckEditor_Menu.java index 640dc6e5514..25f0dcbb6af 100644 --- a/src/forge/Gui_Quest_DeckEditor_Menu.java +++ b/src/forge/Gui_Quest_DeckEditor_Menu.java @@ -922,8 +922,11 @@ public class Gui_Quest_DeckEditor_Menu extends JMenuBar { deckMenu.add(save); deckMenu.add(copy); - deckMenu.addSeparator();//new code - deckMenu.add(addCard); //new code + // The "Cheat - Add Card" menu item is buggy. + // There are other, safer and less buggy ways for people to cheat. + + // deckMenu.addSeparator();//new code + // deckMenu.add(addCard); //new code deckMenu.addSeparator(); addImportExport(deckMenu, true);