set public methods back to private

this is so it functions like the default method
This commit is contained in:
BuildTools
2020-04-20 23:00:34 -05:00
parent 142ce4de7e
commit bf0b6f9c0c
@@ -518,8 +518,7 @@ public class EntityRenderer implements IResourceManagerReloadListener
/**
* Changes the field of view of the player depending on if they are underwater or not
*/
// XXX was private
public float getFOVModifier(float partialTicks, boolean useFOVSetting)
private float getFOVModifier(float partialTicks, boolean useFOVSetting)
{
if (this.debugView)
{
@@ -602,8 +601,7 @@ public class EntityRenderer implements IResourceManagerReloadListener
/**
* sets up player's eye (or camera in third person mode)
*/
//XXX was private
public void orientCamera(float partialTicks)
private void orientCamera(float partialTicks)
{
Entity entity = this.mc.getRenderViewEntity();
float f = entity.getEyeHeight();