Changed client data and fake player to completely lower case

This commit is contained in:
Ellpeck 2016-05-17 11:34:50 +02:00
parent a2d360d610
commit fd407d3983
2 changed files with 2 additions and 2 deletions

View file

@ -95,7 +95,7 @@ public class ClientProxy implements IProxy{
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()){
ModelLoader.setCustomModelResourceLocation(entry.getKey().getItem(), entry.getKey().getItemDamage(), entry.getValue());

View file

@ -20,7 +20,7 @@ import java.util.UUID;
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 FakePlayer theFakePlayer;