mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-18 02:24:22 +01:00
Fix, the loading bug.
This commit is contained in:
parent
4fe2035f81
commit
79a7242824
3 changed files with 4 additions and 4 deletions
|
@ -20,7 +20,7 @@ apply plugin: 'net.minecraftforge.gradle.liteloader'
|
|||
apply plugin: 'org.spongepowered.mixin'
|
||||
|
||||
group = 'com.minelittlepony'
|
||||
version = '1.12.0.2'
|
||||
version = '1.12.0.3'
|
||||
description = 'Mine Little Pony'
|
||||
|
||||
targetCompatibility = 1.8
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#Build Number for ANT. Do not edit!
|
||||
#Fri Jul 28 14:25:09 EDT 2017
|
||||
build.number=417
|
||||
#Sat Jul 29 01:55:25 CEST 2017
|
||||
build.number=454
|
||||
|
|
|
@ -17,7 +17,7 @@ public class MixinGuiMainMenu extends GuiScreen {
|
|||
|
||||
private static final int SKINS = 5000;
|
||||
|
||||
@Inject(method = "initGui()V", at = @At("RETURN"))
|
||||
@Inject(method = "initGui()V", at = @At("HEAD"))
|
||||
private void onInit(CallbackInfo ci) {
|
||||
ItemStack itemStack = new ItemStack(Items.LEATHER_LEGGINGS);
|
||||
Items.LEATHER_LEGGINGS.setColor(itemStack, 0x3c5dcb);
|
||||
|
|
Loading…
Reference in a new issue