Fix mistake when registering fully qualified names

This commit is contained in:
nossr50
2019-06-13 15:57:44 -07:00
parent 307bf8b332
commit 18a28a87b1
2 changed files with 2 additions and 1 deletions

View File

@ -138,7 +138,7 @@ public class ExperienceManager {
if (matchingMaterial != null) {
//Map the fully qualified name
fullyQualifiedBlockXPMap.put(matchingMaterial.getKey().getKey(), userConfigMap.get(string));
fullyQualifiedBlockXPMap.put(matchingMaterial.getKey(), userConfigMap.get(string));
} else {
mcMMO.p.getLogger().info("Could not find a match for the block named '" + string + "' among vanilla block registers");
}