mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-13 05:54:40 +01:00
Handle AOOBX (not sure why yet)
This commit is contained in:
parent
d88ebb0d20
commit
8e27d5defd
@ -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…
Reference in New Issue
Block a user