mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-24 16:48:00 -05:00
improve stone strata detection
This commit is contained in:
parent
497ccc70ea
commit
88f27cb191
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ public class ReplacementMap {
|
|||
*/
|
||||
private String getStoneStrata(ResourceLocation item) {
|
||||
for (String stone : unifyConfig.getStoneStrata()) {
|
||||
if (item.getPath().startsWith(stone + "_")) {
|
||||
if (item.getPath().contains(stone + "_")) {
|
||||
return stone;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue