1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-07-06 20:12:52 +00:00

Use correct model for the turtle modem

Introduced in 0c3de1087eaab54203054d8255f7784b28e642b4, so should only
affect 1.16.5 and 1.18.2.

Fixes #1426
This commit is contained in:
Jonathan Coates 2023-05-03 23:34:22 +01:00
parent 2a9f35de5e
commit c0f982dc97
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06

View File

@ -87,7 +87,7 @@ public class TurtleModem extends AbstractTurtleUpgrade
}
else
{
leftOffModel = new ResourceLocation( ComputerCraft.MOD_ID, "turtle_modem_normal_off_left" );
leftOffModel = new ResourceLocation( ComputerCraft.MOD_ID, "block/turtle_modem_normal_off_left" );
rightOffModel = new ResourceLocation( ComputerCraft.MOD_ID, "block/turtle_modem_normal_off_right" );
leftOnModel = new ResourceLocation( ComputerCraft.MOD_ID, "block/turtle_modem_normal_on_left" );
rightOnModel = new ResourceLocation( ComputerCraft.MOD_ID, "block/turtle_modem_normal_on_right" );