Possible solution for #1798
This commit is contained in:
parent
6114f45d9b
commit
92b3bc6651
5 changed files with 27 additions and 20 deletions
|
@ -46,6 +46,8 @@ import reborncore.common.BaseBlockEntityProvider;
|
|||
import reborncore.common.blocks.BlockWrenchEventHandler;
|
||||
import reborncore.common.util.WrenchUtils;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
/**
|
||||
* Created by Rushmead
|
||||
*/
|
||||
|
@ -89,7 +91,7 @@ public abstract class BlockEnergyStorage extends BaseBlockEntityProvider {
|
|||
if (fullName.equalsIgnoreCase("LESU")) {
|
||||
return "ev_multi";
|
||||
}
|
||||
return fullName.toLowerCase();
|
||||
return fullName.toLowerCase(Locale.ROOT);
|
||||
}
|
||||
|
||||
// Block
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue