mirror of
https://github.com/PlayPro/CoreProtect.git
synced 2025-02-18 02:02:29 +01:00
Fixed performLookup in API not returning valid block data (#308)
This commit is contained in:
parent
3ffed30b1e
commit
acb71a83a2
@ -56,7 +56,7 @@ public class Lookup extends Queue {
|
|||||||
results[newId] = (String) map[i];
|
results[newId] = (String) map[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (i == 13 && map[i] instanceof Byte[]) {
|
else if (i == 13 && map[i] instanceof byte[]) {
|
||||||
results[newId] = Util.byteDataToString((byte[]) map[i], (int) map[6]);
|
results[newId] = Util.byteDataToString((byte[]) map[i], (int) map[6]);
|
||||||
}
|
}
|
||||||
else if (i > 0) { // skip rowid
|
else if (i > 0) { // skip rowid
|
||||||
|
Loading…
Reference in New Issue
Block a user