Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Slymask3 committed Aug 19, 2022
1 parent 6cc5859 commit 7b07789
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@
- Clear wand for removing skydive and statue color blocks
- Skin overlay support for instant statue

### Changed
- Instant grinder input to a bubble column

### Fixed
- Prevent activating an instant block more than once
- Instant light message
- Instant light create message
- Concurrent instant liquid blocks
- Instant statue skin mirroring ([#4](https://github.com/slymask3/instant-blocks/issues/4))
- Instant grinder input tube

## [1.6.4](https://github.com/slymask3/instant-blocks/compare/1.19-1.6.3...1.19.2-1.6.4) - 2022-08-09
### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,6 @@ protected void renderLabels(PoseStack poseStack, int mouseX, int mouseY) {
this.font.draw(poseStack, Component.translatable("ib.gui.schematic.input"), this.width / 2 - 4 - 150, 37, 0xA0A0A0);

this.font.draw(poseStack, Component.translatable("ib.gui.schematic.found", this.schematics.size()), this.width / 2 - 2 - 150, 98, 0xFFFFFF);

if(this.schematics.size() == 0) {
this.font.draw(poseStack, Component.translatable("ib.gui.schematic.instructions.1"), this.width / 2 - 3 - 150, 120, 0xAA0000);
this.font.draw(poseStack, Component.translatable("ib.gui.schematic.instructions.2"), this.width / 2 - 3 - 150, 130, 0xAA0000);
this.font.draw(poseStack, Component.translatable("ib.gui.schematic.instructions.3"), this.width / 2 - 3 - 150, 140, 0xAA0000);
}
}

public void sendInfo(boolean activate) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public InteractionResult useOn(UseOnContext context) {
entity.broadcastBreakEvent(InteractionHand.MAIN_HAND);
});

Helper.sendMessage(player, Strings.CLEAR, ChatFormatting.GREEN + String.valueOf(holder.size()));
Helper.sendMessage(player, Strings.CLEAR, ChatFormatting.GOLD + String.valueOf(holder.size()));

return InteractionResult.PASS;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"ib.message.create.tree": "§aInstant %s§a created",
"ib.message.create.escape_ladder": "§aInstant Escape Ladder created going %s§a blocks up",

"ib.message.clear": "§aCleared %s§a blocks",
"ib.message.clear": "§6Clearing %s§6 blocks",

"ib.tooltip.wooden_house": "Creates a small wooden house.",
"ib.tooltip.mining_ladder": "Creates a ladder down to layer %s.",
Expand Down Expand Up @@ -116,9 +116,6 @@
"ib.gui.schematic.ignore": "Ignore generating air",
"ib.gui.schematic.input": "Enter a Schematic File Name:",
"ib.gui.schematic.found": "Found %s schematic files:",
"ib.gui.schematic.instructions.1": "Put .schem files into the 'schematics' folder in .minecraft.",
"ib.gui.schematic.instructions.2": "If the 'schematics' folder doesn't exit, create it.",
"ib.gui.schematic.instructions.3": "Files will update here right away, no need to restart.",
"ib.gui.skydive.title": "Instant Skydive",
"ib.gui.skydive.random": "Randomize",
"ib.gui.skydive.teleport": "Teleport to top",
Expand Down

0 comments on commit 7b07789

Please sign in to comment.