//moves the Wumpus away if you miss your shot
 public void moveWumpusIfArrowMissed()
 {
     map.moveWumpusAway();
     //updates render info
     updateRender();
 }