diff options
author | Cow <cow@volloeko.de> | 2021-04-25 23:36:52 +0200 |
---|---|---|
committer | Cow <cow@volloeko.de> | 2021-04-25 23:36:52 +0200 |
commit | 953153625f8586201a85d8b983ef2d9dd0e98807 (patch) | |
tree | 85d4d49f34d6f9b6480f363bff5c36191194bb1b /src/main/java/de/cowtipper/cowlection/command | |
parent | b1e45622c2bf1aacdb101d60a5efe7458f126d77 (diff) | |
download | Cowlection-953153625f8586201a85d8b983ef2d9dd0e98807.tar.gz Cowlection-953153625f8586201a85d8b983ef2d9dd0e98807.tar.bz2 Cowlection-953153625f8586201a85d8b983ef2d9dd0e98807.zip |
Bumped version to 1.8.9-0.13.0
- also minor text fixes (package name, readme etc)
Diffstat (limited to 'src/main/java/de/cowtipper/cowlection/command')
-rw-r--r-- | src/main/java/de/cowtipper/cowlection/command/MooCommand.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/de/cowtipper/cowlection/command/MooCommand.java b/src/main/java/de/cowtipper/cowlection/command/MooCommand.java index 745ea15..7deec61 100644 --- a/src/main/java/de/cowtipper/cowlection/command/MooCommand.java +++ b/src/main/java/de/cowtipper/cowlection/command/MooCommand.java @@ -4,7 +4,7 @@ import com.mojang.authlib.GameProfile; import com.mojang.authlib.properties.Property; import com.mojang.realmsclient.util.Pair; import de.cowtipper.cowlection.Cowlection; -import de.cowtipper.cowlection.chestTracker.ChestOverviewGui; +import de.cowtipper.cowlection.chesttracker.ChestOverviewGui; import de.cowtipper.cowlection.command.exception.ApiContactException; import de.cowtipper.cowlection.command.exception.InvalidPlayerNameException; import de.cowtipper.cowlection.command.exception.MooCommandException; @@ -935,7 +935,7 @@ public class MooCommand extends CommandBase { GuiScreen.setClipboardString(GsonUtils.toJson(entities, true)); main.getChatHelper().sendMessage(EnumChatFormatting.GREEN, "Copied " + nearbyEntities.size() + " nearby entities to clipboard."); } else { - main.getChatHelper().sendMessage(EnumChatFormatting.RED, "You stare into the void... and see nothing of interest."); + main.getChatHelper().sendMessage(EnumChatFormatting.RED, "You stare into the void... and see nothing of interest. " + EnumChatFormatting.GRAY + "Try looking at: NPCs, mobs, armor stands, placed skulls, banners, signs, dropped items, item in item frames, or maps on a wall."); } } |