item sprite names

This commit is contained in:
Sen 2025-06-21 21:56:11 +02:00
parent 153e53ba9a
commit 0a701b55d2
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
4 changed files with 4 additions and 4 deletions

View file

@ -292,7 +292,7 @@ public class Item
return provider.getModel(this.getTransform(), name);
}
public String[] getRenderItems() {
public String[] getSprites() {
return null;
}

View file

@ -138,7 +138,7 @@ public class ItemBow extends Item
return 1;
}
public String[] getRenderItems() {
public String[] getSprites() {
return new String[] {"bow_pulling_0", "bow_pulling_1", "bow_pulling_2"};
}

View file

@ -79,7 +79,7 @@ public class ItemFishingRod extends Item
return 1;
}
public String[] getRenderItems() {
public String[] getSprites() {
return new String[] {"fishing_rod_cast"};
}