Skip to content

Commit 2be62d7

Browse files
committed
📝 Version
1 parent b091782 commit 2be62d7

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

API/src/main/java/fr/maxlego08/menu/api/configuration/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ public class Configuration {
289289
falseText = "<red>Disabled",
290290
label = "Enable packet event click limiter"
291291
)
292-
public static boolean enablePacketEventClickLimiter = false;
292+
public static boolean enablePacketEventClickLimiter = true;
293293

294294
@ConfigOption(
295295
key = "packetEventClickLimiterMilliseconds",

changelog.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,20 @@
4040

4141
- [ ] Ajouter un systéme qui permet de load un inventaire uniquement quand tout les requirements sont pr�sents
4242

43-
# Unreleased (1.1.0.8)
43+
# Unreleased
44+
45+
# 1.1.0.9
46+
47+
- **Dynamic Inventory Title Updates**: Added `PacketEventChangeTitleName` and `PacketTitleListener` for changing inventory titles dynamically without reopening the inventory
48+
- **ClearInvType for Inventory Management**: Introduced `ClearInvType` enum and temporary inventory storage system for better inventory state management
49+
- **Enhanced ItemButton Context**: `ItemButton` now includes inventory context for improved button logic and interactions
50+
- **Map Parsing in Arrays**: Fixed parsing of map structures inside arrays in YAML configuration
51+
- **Folia Scheduler Issue**: Resolved scheduler compatibility issue with Folia
52+
- **Shutdown Task Registration**: Fixed task registration during plugin shutdown
53+
- **Variant Component Initialization**: Enhanced variant component initialization with proper error handling and version checks
54+
- Updated `config.yml` to clarify packet event click limiter functionality
55+
56+
# 1.1.0.8
4457

4558
## New Features
4659

src/main/resources/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ enable-cooldown-click: true
154154
# Cooldown duration in milliseconds between clicks.
155155
cooldown-click-milliseconds: 100
156156

157-
# Enable packet event click limiter. Limits all click packets received from players (not just inside zMenu inventories).
157+
# Enable the packet event click limiter. Limits all click packets received from players (not just inside zMenu inventories).
158158
# Prevents players from sending excessive click packets. Helps reduce packet spam and potential exploits. (Requires PacketEvent plugin)
159-
enable-packet-event-click-limiter: false
159+
enable-packet-event-click-limiter: true
160160

161161
# Packet event click limiter duration in milliseconds.
162162
# Minimum time required between packet-level click events. Lower values are more permissive.

0 commit comments

Comments
 (0)