Adds getLocalizedName and getUnlocalizedName to FluidStack
This commit is contained in:
parent
27d5dc0a25
commit
ff2696dff8
2 changed files with 18 additions and 0 deletions
|
@ -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.
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue