Fix oil only be found on second scan
This commit is contained in:
parent
77b25d8c82
commit
60328e2adf
1 changed files with 1 additions and 1 deletions
|
@ -1550,7 +1550,7 @@ public class GT_Utility {
|
||||||
if(GT_Proxy.chunkData.containsKey(tPos)){
|
if(GT_Proxy.chunkData.containsKey(tPos)){
|
||||||
tInts = GT_Proxy.chunkData.get(tPos);
|
tInts = GT_Proxy.chunkData.get(tPos);
|
||||||
if(tInts.length>0){
|
if(tInts.length>0){
|
||||||
if(tInts[0]>=0){tAmount = tInts[0];}
|
if(tInts[0]>0){tAmount = tInts[0];}
|
||||||
}
|
}
|
||||||
GT_Proxy.chunkData.remove(tPos);
|
GT_Proxy.chunkData.remove(tPos);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue