Handle AOOBX (not sure why yet)
This commit is contained in:
parent
d88ebb0d20
commit
8e27d5defd
3 changed files with 7 additions and 3 deletions
|
|
@ -2542,7 +2542,11 @@ public class TexturePack {
|
|||
else {
|
||||
faceindex = laststep.ordinal();
|
||||
}
|
||||
textid = map.faces[faceindex];
|
||||
try {
|
||||
textid = map.faces[faceindex];
|
||||
} catch (ArrayIndexOutOfBoundsException aioob) {
|
||||
textid = -1
|
||||
}
|
||||
if (ctm != null) {
|
||||
int mod = 0;
|
||||
if(textid >= COLORMOD_MULT_INTERNAL) {
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ allprojects {
|
|||
apply plugin: 'java'
|
||||
|
||||
group = 'us.dynmap'
|
||||
version = '3.4-SNAPSHOT'
|
||||
version = '3.4-beta-5'
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ allprojects {
|
|||
apply plugin: 'java'
|
||||
|
||||
group = 'us.dynmap'
|
||||
version = '3.4-SNAPSHOT'
|
||||
version = '3.4-beta-5'
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue