Adds getLocalizedName and getUnlocalizedName to FluidStack

This commit is contained in:
Glassmaker 2014-07-10 15:25:53 +03:00
parent 27d5dc0a25
commit ff2696dff8
2 changed files with 18 additions and 0 deletions

View File

@ -205,6 +205,14 @@ public class Fluid
return s == null ? "" : StatCollector.translateToLocal(s);
}
/**
* A FluidStack sensitive version of getUnlocalizedName
*/
public String getUnlocalizedName(FluidStack stack)
{
return this.getUnlocalizedName();
}
/**
* Returns the unlocalized name of this fluid.
*/

View File

@ -100,6 +100,16 @@ public class FluidStack
return FluidRegistry.getFluid(fluidID);
}
public String getLocalizedName()
{
return this.getFluid().getLocalizedName(this);
}
public String getUnlocalizedName()
{
return this.getFluid().getUnlocalizedName(this);
}
/**
* @return A copy of this FluidStack
*/