Skip to content

Commit

Permalink
Fixed wiki url being incorrect in various commands
Browse files Browse the repository at this point in the history
  • Loading branch information
nossr50 committed Apr 3, 2023
1 parent 7264e1a commit 7973038
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -55,3 +55,4 @@

# Atlassian Stuff
/atlassian-ide-plugin.xml
/nulllocale_override.properties
1 change: 1 addition & 0 deletions Changelog.txt
@@ -1,4 +1,5 @@
Version 2.1.219
Fixed wiki url being incorrect in commands
Added support for various new things from Minecraft 1.20
Fixed double drop issue with Beetroots
Added 'Camel' to taming experience in experience.yml
Expand Down
Expand Up @@ -4,7 +4,7 @@ public class McMMOUrl {
public static final String urlWebsite = "https://www.mcmmo.org";
public static final String urlDiscord = "https://discord.gg/bJ7pFS9";
public static final String urlPatreon = "https://www.patreon.com/nossr50";
public static final String urlWiki = "https://www.mcmmo.org/wiki/";
public static final String urlWiki = "https://wiki.mcmmo.org/";
public static final String urlSpigot = "https://spigot.mcmmo.org";
public static final String urlTranslate = "https://translate.mcmmo.org/";

Expand Down
Expand Up @@ -69,7 +69,7 @@ public static void sendPlayerSubSkillWikiLink(Player player, String subskillform
TextComponent.Builder wikiLinkComponent = Component.text().content(LocaleLoader.getString("Overhaul.mcMMO.MmoInfo.Wiki"));
wikiLinkComponent.decoration(TextDecoration.UNDERLINED, true);

String wikiUrl = "https://mcmmo.org/wiki/"+subskillformatted;
String wikiUrl = "https://wiki.mcmmo.org/"+subskillformatted;

wikiLinkComponent.clickEvent(ClickEvent.openUrl(wikiUrl));

Expand Down

0 comments on commit 7973038

Please sign in to comment.