Skip to content
This repository was archived by the owner on Sep 15, 2024. It is now read-only.

Commit 655abe7

Browse files
fix actions
1 parent e27249a commit 655abe7

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A simple mixin mod that adds Arcmetica support directly into OptiFine. No more n
77

88
Animated capes do not work.
99

10-
[Get capes from Cosmetica](https://cosmetica.cc)
10+
[Get capes from Cosmetica (log in using Microsoft)](https://login.cosmetica.cc)
1111

1212
### Development
1313

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ org.gradle.jvmargs=-Xmx2g
33
baseGroup = com.github.microcontrollersdev.mixmetica
44
mcVersion = 1.8.9
55
modid = mixmetica
6-
version = 1.0.0
6+
version = 1.1.1

src/main/java/com/github/microcontrollersdev/mixmetica/command/MixmeticaCommand.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import net.minecraft.client.Minecraft;
44
import net.minecraft.command.CommandBase;
5-
import net.minecraft.command.CommandException;
65
import net.minecraft.command.ICommandSender;
76
import net.minecraft.event.ClickEvent;
87
import net.minecraft.event.HoverEvent;
@@ -25,7 +24,7 @@ public String getCommandUsage(ICommandSender sender) {
2524
public void processCommand(ICommandSender sender, String[] args) {
2625
Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(
2726
EnumChatFormatting.GOLD + "[Mixmetica]" + EnumChatFormatting.WHITE +
28-
" Go to https://cosmetica.cc to set your cosmetics!").setChatStyle(createClickStyle(ClickEvent.Action.OPEN_URL, "https://cosmetica.cc")));
27+
" Click here to go to https://login.cosmetica.cc to login into Cosmetica using Microsoft. Then you can set your cosmetics :)").setChatStyle(createClickStyle(ClickEvent.Action.OPEN_URL, "https://login.cosmetica.cc")));
2928
}
3029

3130
@Override

0 commit comments

Comments
 (0)