block cleanup #2

This commit is contained in:
Sen 2025-06-20 23:10:16 +02:00
parent 54511912dd
commit 473ef16043
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
41 changed files with 278 additions and 757 deletions

View file

@ -230,7 +230,7 @@ public class RenderItem
if (item == Items.fishing_rod && entityplayer.fishEntity != null)
{
modelresourcelocation = "item/fishing_rod#1" + '#' + "inventory";
modelresourcelocation = "item/fishing_rod_cast" + '#' + "inventory";
}
else if (item == Items.bow && entityplayer.getItemInUse() != null)
{
@ -238,15 +238,15 @@ public class RenderItem
if (i >= 18)
{
modelresourcelocation = "item/bow#3" + '#' + "inventory";
modelresourcelocation = "item/bow_pulling_3" + '#' + "inventory";
}
else if (i > 13)
{
modelresourcelocation = "item/bow#2" + '#' + "inventory";
modelresourcelocation = "item/bow_pulling_2" + '#' + "inventory";
}
else if (i > 0)
{
modelresourcelocation = "item/bow#1" + '#' + "inventory";
modelresourcelocation = "item/bow_pulling_1" + '#' + "inventory";
}
}