mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-26 00:38:35 +01:00
Changed client data and fake player to completely lower case
This commit is contained in:
parent
a2d360d610
commit
fd407d3983
2 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ public class ClientProxy implements IProxy{
|
||||||
ModUtil.LOGGER.warn("You have turned Seasonal Mode off. Therefore, you are evil.");
|
ModUtil.LOGGER.warn("You have turned Seasonal Mode off. Therefore, you are evil.");
|
||||||
}
|
}
|
||||||
|
|
||||||
PersistentClientData.setTheFile(new File(Minecraft.getMinecraft().mcDataDir, ModUtil.MOD_ID+"Data.dat"));
|
PersistentClientData.setTheFile(new File(Minecraft.getMinecraft().mcDataDir, ModUtil.MOD_ID+"data.dat"));
|
||||||
|
|
||||||
for(Map.Entry<ItemStack, ModelResourceLocation> entry : modelLocationsForRegistering.entrySet()){
|
for(Map.Entry<ItemStack, ModelResourceLocation> entry : modelLocationsForRegistering.entrySet()){
|
||||||
ModelLoader.setCustomModelResourceLocation(entry.getKey().getItem(), entry.getKey().getItemDamage(), entry.getValue());
|
ModelLoader.setCustomModelResourceLocation(entry.getKey().getItem(), entry.getKey().getItemDamage(), entry.getValue());
|
||||||
|
|
|
@ -20,7 +20,7 @@ import java.util.UUID;
|
||||||
|
|
||||||
public class FakePlayerUtil{
|
public class FakePlayerUtil{
|
||||||
|
|
||||||
private static final String FAKE_NAME = ModUtil.MOD_ID+"FakePlayer";
|
private static final String FAKE_NAME = ModUtil.MOD_ID+"fakeplayer";
|
||||||
private static final GameProfile FAKE_PROFILE = new GameProfile(UUID.nameUUIDFromBytes(FAKE_NAME.getBytes()), FAKE_NAME);
|
private static final GameProfile FAKE_PROFILE = new GameProfile(UUID.nameUUIDFromBytes(FAKE_NAME.getBytes()), FAKE_NAME);
|
||||||
private static FakePlayer theFakePlayer;
|
private static FakePlayer theFakePlayer;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue