Index: .gitignore
===================================================================
--- .gitignore	(revision 5db343bb8ea43205318625b8678be47f340e5e50)
+++ .gitignore	(revision 1c27783d6269ba42d4373e4dc9442ff90b0a271d)
@@ -1,2 +1,4 @@
 .DS_Store
 *.class
+err.txt
+LostHavenRPG.jar
Index: main/LostHavenRPG.java
===================================================================
--- main/LostHavenRPG.java	(revision 5db343bb8ea43205318625b8678be47f340e5e50)
+++ main/LostHavenRPG.java	(revision 1c27783d6269ba42d4373e4dc9442ff90b0a271d)
@@ -48,5 +48,5 @@
 
 public class LostHavenRPG implements KeyListener, MouseListener {
-    private static final boolean RUNNING_FROM_JAR = true;
+    private static final boolean RUNNING_FROM_JAR = false;
     GameState gameState;
     AuxState auxState;
@@ -180,5 +180,5 @@
             this.g = bufferStrategy.getDrawGraphics();
             this.refreshRate = device.getDisplayMode().getRefreshRate();
-            Utils.init(gc, false);
+            Utils.init(gc, RUNNING_FROM_JAR);
             this.gameState = GameState.Main;
             this.auxState = AuxState.None;
@@ -716,5 +716,5 @@
         switch (this.gameState) {
             case Main: {
-                //this.wndMain.draw(g);
+                this.wndMain.draw(g);
                 break;
             }
