Fully fixed weapon part bug

This commit is contained in:
Anuken 2022-06-03 21:42:26 -04:00
parent 152a5b5c94
commit 56cc88f582
2 changed files with 2 additions and 2 deletions

View File

@ -232,7 +232,7 @@ public class Weapon implements Cloneable{
if(parts.size > 0){
//TODO does it need an outline?
for(int i = 0; i < parts.size; i++){
var part = parts.items[i];
var part = parts.get(i);
if(!part.under){
part.draw(DrawPart.params);
}

View File

@ -25,4 +25,4 @@ org.gradle.caching=true
#used for slow jitpack builds; TODO see if this actually works
org.gradle.internal.http.socketTimeout=100000
org.gradle.internal.http.connectionTimeout=100000
archash=c4505eb469
archash=b285c727bd