Fix posture and inscription

This commit is contained in:
abel1502 2025-06-03 12:52:07 +03:00
parent 61acb3db45
commit 20eb02e816
No known key found for this signature in database
GPG Key ID: 076926596A536338
2 changed files with 3 additions and 3 deletions

View File

@ -214,7 +214,7 @@ public class BlockBobble extends BlockContainer implements IGUIProvider, INBTTra
MICROWAVE( "Microwave", "Microwave", "OC Compatibility and massive RBMK/packet optimizations", "they call me the food heater$john optimization", true, ScrapType.BOARD_CONVERTER), MICROWAVE( "Microwave", "Microwave", "OC Compatibility and massive RBMK/packet optimizations", "they call me the food heater$john optimization", true, ScrapType.BOARD_CONVERTER),
PEEP( "Peep", "LePeeperSauvage", "Coilgun, Leadburster and Congo Lake models, BDCL QC", "Fluffy ears can't hide in ash, nor snow.", true, ScrapType.CARD_BOARD), PEEP( "Peep", "LePeeperSauvage", "Coilgun, Leadburster and Congo Lake models, BDCL QC", "Fluffy ears can't hide in ash, nor snow.", true, ScrapType.CARD_BOARD),
MELLOW( "MELLOWARPEGGIATION", "Mellow", "NBT Structures, industrial lighting, animation tools", "Make something cool now, ask for permission later.", true, ScrapType.CARD_PROCESSOR), MELLOW( "MELLOWARPEGGIATION", "Mellow", "NBT Structures, industrial lighting, animation tools", "Make something cool now, ask for permission later.", true, ScrapType.CARD_PROCESSOR),
ABEL( "Abel1502", "Abel1502", "Abilities GUI, optimizations and many QoL improvements", "NANTO SUBARASHII!", true, ScrapType.CPU_REGISTER); ABEL( "Abel1502", "Abel1502", "Abilities GUI, optimizations and many QoL improvements", "NANTO SUBARASHII", true, ScrapType.CPU_REGISTER);
public String name; //the title of the tooltip public String name; //the title of the tooltip
public String label; //the name engraved in the socket public String label; //the name engraved in the socket

View File

@ -223,8 +223,8 @@ public class RenderBobble extends TileEntitySpecialRenderer {
rotRightLeg = new double[]{-3, -5, 0}; rotRightLeg = new double[]{-3, -5, 0};
break; break;
case ABEL: case ABEL:
rotLeftArm = new double[]{0, 15, 80}; rotLeftArm = new double[]{0, 80, 90};
rotRightArm = new double[]{0, 15, 80}; rotRightArm = new double[]{0, -80, 90};
break; break;
} }
} }