Index: main/Creature.java
===================================================================
--- main/Creature.java	(revision 5d846bb9a22780562a98432dfe6184f00066c634)
+++ main/Creature.java	(revision 57674f39e89e90dfa33c0faf5d044786912de651)
@@ -13,6 +13,5 @@
 import java.awt.geom.Point2D;
 
-public class Creature extends MapObject
-{
+public class Creature extends MapObject {
     String name;
     private Model model;
@@ -77,5 +76,5 @@
         this.dead = false;
         this.id = Creature.lastId;
-        ++Creature.lastId;
+        Creature.lastId++;
     }
     
Index: main/Enemy.java
===================================================================
--- main/Enemy.java	(revision 5d846bb9a22780562a98432dfe6184f00066c634)
+++ main/Enemy.java	(revision 57674f39e89e90dfa33c0faf5d044786912de651)
@@ -8,6 +8,5 @@
 import java.awt.Point;
 
-public class Enemy extends Creature
-{
+public class Enemy extends Creature {
     int xpReward;
     Point patrolTarget;
Index: main/Item.java
===================================================================
--- main/Item.java	(revision 5d846bb9a22780562a98432dfe6184f00066c634)
+++ main/Item.java	(revision 57674f39e89e90dfa33c0faf5d044786912de651)
@@ -9,6 +9,5 @@
 import utils.DynamicImage;
 
-public class Item extends MapObject
-{
+public class Item extends MapObject {
     private String name;
     private DynamicImage img;
Index: main/MapEditor.java
===================================================================
--- main/MapEditor.java	(revision 5d846bb9a22780562a98432dfe6184f00066c634)
+++ main/MapEditor.java	(revision 57674f39e89e90dfa33c0faf5d044786912de651)
@@ -40,6 +40,5 @@
 import java.awt.event.KeyListener;
 
-public class MapEditor implements KeyListener, MouseListener
-{
+public class MapEditor implements KeyListener, MouseListener {
     public static final int RES_X = 1024;
     public static final int RES_Y = 768;
@@ -96,12 +95,9 @@
     boolean highLevelPlacement;
     Point playerLoc;
-    Point start;
     
     public MapEditor(final GraphicsDevice device) {
         this.started = false;
-        this.start = null;
         try {
             GraphicsConfiguration gc = device.getDefaultConfiguration();
-            gc = device.getDefaultConfiguration();
             (MapEditor.frmMain = new Frame(gc)).setUndecorated(true);
             MapEditor.frmMain.setIgnoreRepaint(true);
@@ -117,5 +113,5 @@
             this.mapBuffer = gc.createCompatibleImage(800, 600);
             this.mapG = this.mapBuffer.getGraphics();
-            Utils.init(gc, false);
+            Utils.init(gc, RUNNING_FROM_JAR);
             this.state = State.Main;
             this.auxState = AuxState.None;
@@ -152,10 +148,8 @@
                 }
             }
-        }
-        catch (Exception e) {
+        } catch (Exception e) {
             e.printStackTrace();
             return;
-        }
-        finally {
+        } finally {
             device.setFullScreenWindow(null);
         }
@@ -1104,6 +1098,5 @@
             final GraphicsDevice device = env.getDefaultScreenDevice();
             new MapEditor(device);
-        }
-        catch (Exception e) {
+        } catch (Exception e) {
             e.printStackTrace();
         }
Index: main/MapObject.java
===================================================================
--- main/MapObject.java	(revision 5d846bb9a22780562a98432dfe6184f00066c634)
+++ main/MapObject.java	(revision 57674f39e89e90dfa33c0faf5d044786912de651)
@@ -5,6 +5,5 @@
 import java.awt.Point;
 
-public class MapObject implements Comparable<MapObject>
-{
+public class MapObject implements Comparable<MapObject> {
     public Point loc;
     public int z;
@@ -15,7 +14,6 @@
         this.loc = new Point(x, y);
         this.z = z;
-        final Bound bound = null;
-        this.selectionBound = bound;
-        this.bound = bound;
+        this.bound = null;
+        this.selectionBound = null;
     }
     
