Skip to content

Commit e058268

Browse files
committed
quick fix / update
1 parent 79b26ed commit e058268

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

libs/jars/FCL-1.XII.45.jar

126 Bytes
Binary file not shown.

settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
0
77
],
88
"fullscreen": false,
9-
"floor": true,
9+
"floor": false,
1010
"lines": true,
1111
"cube": false,
1212
"demo": false,

src/net/fexcraft/app/fmt/FMTB.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
public class FMTB implements FMTGLProcess {
6666

6767
public static final String deftitle = "Fexcraft Modelling Toolbox - %s";
68-
public static String version = "1.0.2-test";
68+
public static String version = "1.0.3-test";
6969
//
7070
private static String title;
7171
private boolean close;

src/net/fexcraft/app/fmt/utils/RayCoastAway.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ private static int getSelectedFace(PolygonWrapper wrapper, int id){
6565
private static PolygonWrapper getSelected(int id){
6666
for(TurboList list : FMTB.MODEL.getCompound().values()){
6767
for(PolygonWrapper wrapper : list){
68+
if(wrapper.color == null) continue;
6869
for(int col : wrapper.color){
6970
if(col == id) return wrapper;
7071
}

0 commit comments

Comments
 (0)