Rename fluids

This commit is contained in:
modmuss50 2018-07-24 14:18:09 +01:00
parent b3002b6f57
commit 1be2752b72
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82
3 changed files with 69 additions and 69 deletions

View file

@ -40,7 +40,7 @@ public class ItemCells {
if (fluid == null) {
fluid = FluidRegistry.getFluid(name.toLowerCase());
if (fluid == null) {
fluid = FluidRegistry.getFluid("fluid" + StringUtils.toFirstCapital(name.toLowerCase()));
fluid = FluidRegistry.getFluid(name.toLowerCase());
}
}
Validate.notNull(fluid, "The fluid " + name + " could not be found");