Skip to content

Commit db5ccad

Browse files
Merge pull request #23 from hannibal002/beta
0.22 beta 6.5
2 parents 3f059cc + f97ed6e commit db5ccad

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+452
-222
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
+ Option to only show the time while holding vacuum in the hand.
2424
+ Mark the plots with pests on them in the world. - hannibal2
2525
+ Press the key to warp to the nearest plot with pests on it. - hannibal2
26+
+ Draw plot borders when holding the Sprayonator. - HiZe
2627

2728
#### Fishing Features
2829

@@ -48,6 +49,12 @@
4849
+ Show in a display how many unique players you have given gifts to in the winter 2023 event.
4950
+ Run command /opengenerowmenu to sync up.
5051

52+
#### Bingo Features
53+
54+
+ Show the duration until the next hidden bingo goal tip gets revealed. - hannibal2
55+
+ Added support for tips in hidden bingo card display. - hannibal2
56+
+ Added support for 'found by' info in bingo card. - hannibal2
57+
5158
#### Inventory Features
5259

5360
+ Added bottle of Jyrre time overlay in stack size feature. - HiZe
@@ -57,6 +64,10 @@
5764

5865
+ Shows how much skill experience you will get when picking up items from the minion storage. - Thunderblade73
5966

67+
#### Chat Features
68+
69+
+ Hide the repeating fire sale reminder chat messages. - hannibal2
70+
6071
### Changes
6172

6273
#### Garden Changes
@@ -69,7 +80,7 @@
6980
+ Added the "plot" word to the sidebar again (only if there are no pests in garden). - hannibal2
7081
+ Hide the Composter Overlay in composter inventory while the Estimated Item Value is visible. - hannibal2
7182
+ Made the wording of "no pest spawned yet" message more clear. - hannibal2
72-
+ Not only show the waypoint for infected plots, also show their waypoints in the world. - hannibal2
83+
+ Not only show the waypoint for infested plots, also show their waypoints in the world. - hannibal2
7384

7485
#### Fishing Changes
7586

@@ -98,7 +109,7 @@
98109

99110
+ Fixed Item Tracker not ignoring manual sack movements. - hannibal2
100111
+ Fixed showing yourself green with Unique Gifting Opportunities. - hannibal2
101-
+ Fixed NPC messages getting detected as player messages. - walker
112+
+ Fixed NPC messages getting detected as player messages. - CalMWolfs
102113

103114
#### Config Fixes
104115

FEATURES.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
2828
+ Will not break with emblems.
2929
+ Optional if left or right side of name.
3030
+ Should not break with other mods.
31+
+ Hide the repeating fire sale reminder chat messages. - hannibal2
3132

3233
#### Chat Filter
3334

@@ -341,6 +342,9 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
341342

342343
+ Shortens chat messages about skill level ups, collection gains and new area discoveries while on bingo.
343344
+ Bingo Card
345+
+ Show the duration until the next hidden bingo goal tip gets revealed. - hannibal2
346+
+ Support for tips in hidden bingo card display. - hannibal2
347+
+ Support for 'found by' info in bingo card. - hannibal2
344348
</details>
345349
<details open><summary>
346350

@@ -499,7 +503,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
499503
+ Garden Vacuum Pests in Pest bag to item number as stack size. - hannibal2
500504
+ Enable via /sh vacuum.
501505

502-
### Pests
506+
### Garden Pests
503507

504508
+ Added Garden Vacuum Pests in Pest bag to item number as stack size. - hannibal2
505509
+ Enable via /sh vacuum.
@@ -518,6 +522,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
518522
+ Option to only show the time while holding vacuum in the hand.
519523
+ Mark the plots with pests on them in the world. - hannibal2
520524
+ Press the key to warp to the nearest plot with pests on it. - hannibal2
525+
+ Draw plot borders when holding the Sprayonator. - HiZe
521526

522527
</details>
523528
<details open><summary>

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
}
1212

1313
group = "at.hannibal2.skyhanni"
14-
version = "0.22.Beta.5"
14+
version = "0.22.Beta.6"
1515

1616
// Toolchains:
1717
java {

src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import at.hannibal2.skyhanni.config.Features
88
import at.hannibal2.skyhanni.config.SackData
99
import at.hannibal2.skyhanni.config.commands.Commands.init
1010
import at.hannibal2.skyhanni.data.ActionBarStatsData
11-
import at.hannibal2.skyhanni.data.BingoAPI
1211
import at.hannibal2.skyhanni.data.BlockData
1312
import at.hannibal2.skyhanni.data.ChatManager
1413
import at.hannibal2.skyhanni.data.CropAccessoryData
@@ -54,6 +53,7 @@ import at.hannibal2.skyhanni.features.bazaar.BazaarBestSellMethod
5453
import at.hannibal2.skyhanni.features.bazaar.BazaarCancelledBuyOrderClipboard
5554
import at.hannibal2.skyhanni.features.bazaar.BazaarOpenPriceWebsite
5655
import at.hannibal2.skyhanni.features.bazaar.BazaarOrderHelper
56+
import at.hannibal2.skyhanni.features.bingo.BingoAPI
5757
import at.hannibal2.skyhanni.features.bingo.BingoCardDisplay
5858
import at.hannibal2.skyhanni.features.bingo.BingoCardTips
5959
import at.hannibal2.skyhanni.features.bingo.BingoNextStepHelper
@@ -350,7 +350,7 @@ import org.apache.logging.log4j.Logger
350350
clientSideOnly = true,
351351
useMetadata = true,
352352
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
353-
version = "0.22.Beta.5",
353+
version = "0.22.Beta.6",
354354
)
355355
class SkyHanniMod {
356356
@Mod.EventHandler

src/main/java/at/hannibal2/skyhanni/config/ConfigManager.kt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,7 @@ class ConfigManager {
187187
run()
188188
} catch (e: Throwable) {
189189
e.printStackTrace()
190-
println("This is a crash.")
191-
while (true) {
192-
// If you know the forge method to shut down correctly, please quietly pr it.
193-
}
190+
LorenzUtils.shutdownMinecraft("Config is corrupt inside developement enviroment.")
194191
}
195192
} else {
196193
run()

src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ object Commands {
396396
@JvmStatic
397397
fun openFortuneGuide() {
398398
if (!LorenzUtils.inSkyBlock) {
399-
LorenzUtils.chat("§cJoin SkyBlock to open the fortune guide!", false)
399+
LorenzUtils.userError("Join SkyBlock to open the fortune guide!")
400400
} else {
401401
CaptureFarmingGear.captureFarmingGear()
402402
SkyHanniMod.screenToOpen = FFGuideGUI()
@@ -406,7 +406,7 @@ object Commands {
406406
@JvmStatic
407407
fun openVisualWords() {
408408
if (!LorenzUtils.onHypixel) {
409-
LorenzUtils.chat("§cYou need to join Hypixel to use this feature!", false)
409+
LorenzUtils.userError("You need to join Hypixel to use this feature!")
410410
} else {
411411
if (VisualWordGui.sbeConfigPath.exists()) VisualWordGui.drawImport = true
412412
SkyHanniMod.screenToOpen = VisualWordGui()

src/main/java/at/hannibal2/skyhanni/config/features/chat/FilterTypesConfig.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ public class FilterTypesConfig {
7474
@FeatureToggle
7575
public boolean profileJoin = true;
7676

77+
@Expose
78+
@ConfigOption(name = "Fire Sale", desc = "Hide the repeating fire sale reminder chat messages.")
79+
@ConfigEditorBoolean
80+
@FeatureToggle
81+
public boolean fireSale = true;
82+
7783
//TODO remove
7884
@Expose
7985
@ConfigOption(name = "Others", desc = "Hide other annoying messages.")

src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,9 @@ public class BingoCardConfig {
4242

4343
@Expose
4444
public Position bingoCardPos = new Position(10, 10, false, true);
45+
46+
@Expose
47+
@ConfigOption(name = "Next Tip Duration", desc = "Show the duration until the next hidden personal goal gets a tip revealed.")
48+
@ConfigEditorBoolean
49+
public Property<Boolean> nextTipDuration = Property.of(true);
4550
}

src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/SprayConfig.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,18 @@ public class SprayConfig {
1111
@Expose
1212
@ConfigOption(
1313
name = "Pest Spray Selector",
14-
desc = "Show the pests that are attracted when changing the selected material of the §aSprayanator§7."
14+
desc = "Show the pests that are attracted when changing the selected material of the §aSprayonator§7."
1515
)
1616
@ConfigEditorBoolean
1717
@FeatureToggle
1818
public boolean pestWhenSelector = true;
1919

20+
@Expose
21+
@ConfigOption(name = "Draw Plot Border", desc = "Draw plots border when holding the Sprayonator.")
22+
@ConfigEditorBoolean
23+
@FeatureToggle
24+
public boolean drawPlotsBorderWhenInHands = true;
25+
2026
@Expose
2127
public Position position = new Position(315, -200, 2.3f);
2228
}

src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ public enum ItemNumberEntry implements HasLegacyId {
8787
VACUUM_GARDEN("§bVacuum (Garden)", 14),
8888
BOTTLE_OF_JYRRE("§bBottle Of Jyrre", 15),
8989
EDITION_NUMBER("§bEdition Number", 16),
90+
BINGO_GOAL_RANK("§bBingo Goal Rank"),
9091
;
9192

9293
private final String str;

0 commit comments

Comments
 (0)