|
From: <cro...@li...> - 2005-04-10 23:50:58
|
Module Name: CFJavaEditor
Committed By: cavesomething
Date: Sun Apr 10 23:50:35 UTC 2005
Modified Files:
CFJavaEditor/src/cfeditor: MapArchObject.java
Log Message:
fix error that makes files not get saved in some cases
Start of context diffs
Index: CFJavaEditor/src/cfeditor/MapArchObject.java
diff -c CFJavaEditor/src/cfeditor/MapArchObject.java:1.8 CFJavaEditor/src/cfeditor/MapArchObject.java:1.9
*** CFJavaEditor/src/cfeditor/MapArchObject.java:1.8 Thu Apr 7 16:06:35 2005
--- CFJavaEditor/src/cfeditor/MapArchObject.java Sun Apr 10 16:50:35 2005
***************
*** 89,95 ****
private String name; // map name (this is the name that appears in the game)
private String filename; // name of the map file
! private String region; // the region the map is in
private String[] tile_path = new String[MAX_TILE]; // Used with map tiling. 0=north, 1=east, 2=south, 3=west
/**
--- 89,95 ----
private String name; // map name (this is the name that appears in the game)
private String filename; // name of the map file
! private String region = ""; // the region the map is in
private String[] tile_path = new String[MAX_TILE]; // Used with map tiling. 0=north, 1=east, 2=south, 3=west
/**
|