diff --git a/src/view/GameEventListener.java b/src/view/GameEventListener.java index 208dd1d..47da3e8 100644 --- a/src/view/GameEventListener.java +++ b/src/view/GameEventListener.java @@ -78,8 +78,15 @@ public void actionPerformed(ActionEvent e) { System.exit(0); } else if (e.getActionCommand().equals("Instructions")) { // TODO: Create an instructions dialog box, this is just for testing - JOptionPane.showMessageDialog(null, "
  1. instr 1
  2. " - + "
", "Instructions", JOptionPane.INFORMATION_MESSAGE); + String instructions = "" + + "" + + "
    " + + "
  1. Click the piece you want to move.
  2. " + + "
  3. Click the place you want to move to.
  4. " + + "
  5. Try not to lose.
  6. " + + "
" + + ""; + JOptionPane.showMessageDialog(null, instructions, "Instructions", JOptionPane.INFORMATION_MESSAGE); } } }