From 1959f63821faeb364895de0fc89197a2534bb54f Mon Sep 17 00:00:00 2001 From: Siddhant Dewani Date: Sun, 24 Feb 2019 22:01:02 -0700 Subject: [PATCH] Small thing, changed an output of warehouse a bit, shows user its the warehouse they are concerned with. --- src/Bank.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Bank.java b/src/Bank.java index a2f6676..604927f 100644 --- a/src/Bank.java +++ b/src/Bank.java @@ -29,7 +29,7 @@ public class Bank{ if(response.equalsIgnoreCase("W")){ boolean notDone2 = true; while(notDone2){ - System.out.println("How much do you wish to Withdraw"); + System.out.println("How much do you wish to Withdraw?"); int withdraw = input.nextInt(); if(withdraw <= player.getBank()){ player.setMoney(withdraw + player.getMoney()); @@ -41,7 +41,7 @@ public class Bank{ }else if(response.equalsIgnoreCase("D")){ boolean notDone2 = true; while(notDone2){ - System.out.println("How much do you wish to Deposit"); + System.out.println("How much do you wish to Deposit?"); int deposit = input.nextInt(); if(deposit <= player.getMoney()){ player.setBank(deposit + player.getBank());