2
0
nossr50 5 жил өмнө
parent
commit
07b838db0f

+ 2 - 0
Changelog.txt

@@ -12,6 +12,8 @@ Version 2.1.126
         Commands.Description.mmocompat
         Commands.Description.mmocompat
         Commands.XPBar.Reset
         Commands.XPBar.Reset
         Commands.XPBar.SettingChanged
         Commands.XPBar.SettingChanged
+        Compatibility.Layer.Unsupported
+        Compatibility.Layer.PartialSupport
 
 
 
 
     Notes:
     Notes:

+ 1 - 1
pom.xml

@@ -2,7 +2,7 @@
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.gmail.nossr50.mcMMO</groupId>
     <groupId>com.gmail.nossr50.mcMMO</groupId>
     <artifactId>mcMMO</artifactId>
     <artifactId>mcMMO</artifactId>
-    <version>2.1.126-SNAPSHOT</version>
+    <version>2.1.126</version>
     <name>mcMMO</name>
     <name>mcMMO</name>
     <url>https://github.com/mcMMO-Dev/mcMMO</url>
     <url>https://github.com/mcMMO-Dev/mcMMO</url>
     <scm>
     <scm>

+ 1 - 1
src/main/java/com/gmail/nossr50/util/compat/CompatibilityManager.java

@@ -81,7 +81,7 @@ public class CompatibilityManager {
             for(CompatibilityType compatibilityType : CompatibilityType.values()) {
             for(CompatibilityType compatibilityType : CompatibilityType.values()) {
                 if(!supportedLayers.get(compatibilityType)) {
                 if(!supportedLayers.get(compatibilityType)) {
                     commandSender.sendMessage(LocaleLoader.getString("mcMMO.Template.Prefix",
                     commandSender.sendMessage(LocaleLoader.getString("mcMMO.Template.Prefix",
-                            "Support layer for " + StringUtils.getCapitalized(compatibilityType.toString()) + "is not supported on this version of Minecraft."));
+                            LocaleLoader.getString("Compatibility.Layer.Unsupported",  StringUtils.getCapitalized(compatibilityType.toString()))));
                 }
                 }
             }
             }
         }
         }

+ 2 - 0
src/main/resources/locale/locale_en_US.properties

@@ -1113,3 +1113,5 @@ LevelCap.Skill=[[GOLD]]([[GREEN]]mcMMO[[GOLD]]) [[YELLOW]]You have reached the l
 Commands.XPBar.Usage=Proper usage is /mmoxpbar <skillname | reset> <show | hide>
 Commands.XPBar.Usage=Proper usage is /mmoxpbar <skillname | reset> <show | hide>
 Commands.Description.mmoxpbar=Player settings for mcMMO XP bars
 Commands.Description.mmoxpbar=Player settings for mcMMO XP bars
 Commands.Description.mmocompat=Information about mcMMO and whether or not its in compatibility mode or fully functional.
 Commands.Description.mmocompat=Information about mcMMO and whether or not its in compatibility mode or fully functional.
+Compatibility.Layer.Unsupported=[[GOLD]]Compatibility for [[GREEN]]{0}[[GOLD]] is not supported by this version of Minecraft.
+Compatibility.Layer.PartialSupport=[[GOLD]]Compatibility for [[GREEN]]{0}[[GOLD]] is not fully supported by this version of Minecraft, but mcMMO is running a secondary system to emulate some of the missing features.