You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+25-1
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,34 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
+
## [2001.1.1]
8
+
9
+
### Added
10
+
* The waypoint manager screen has had a facelift
11
+
* No longer a full-screen GUI
12
+
* Added a delete button alongside the visibility toggle button on the manager screen
13
+
* Added waypoint sharing; there is now a "Share" option on the context menus for waypoints on the large map, and in the waypoint manager screen
14
+
* Player icon on the large map screen is now combined with a pointer indicating the player's facing direction
15
+
* Added new entity tag: `ftbchunks:entity_mob_griefing_blacklist`
16
+
* Prevents mob griefing by any entities in this tag if mob griefing protection is enabled in team settings
17
+
* Note: only works on NeoForge at this time (Fabric remains limited to Endermen only)
18
+
* Info text lines under the minimap are now highly configurable
19
+
* Configure with the "Minimap Info" icon on the left of the large map screen
20
+
* Entries can be enabled/disabled/reordered/configured
21
+
* Added new real time, game time and FPS lines in addition to existing zone/biome/player-pos/debug lines
22
+
23
+
### Fixed
24
+
* Fixed the `/ftbchunks waypoint add` command only working for loaded chunks
25
+
* Fixed block/item/entity tags not being detected
26
+
* If the minimap is being displayed in top-right of screen (the default), then any potion effect icons are moved to the left of the minimap to avoid overlap
27
+
* Fixed the map keybind (by default 'M') not working to close an open map
28
+
* In addition, Ctrl + M (or whatever the map key is bound to) no longer toggles minimap by default
29
+
* This was always a kludge; minimap toggling is now its own keybind (unbound by default)
30
+
7
31
## [2100.1.0]
8
32
9
33
### Changed
10
-
* Ported to Minecraft 1.20.6. Support for Fabric and NeoForge.
34
+
* Ported to Minecraft 1.21. Support for Fabric and NeoForge.
11
35
* Forge support may be re-added if/when Architectury adds support for Forge
Copy file name to clipboardExpand all lines: common/src/main/java/dev/ftb/mods/ftbchunks/FTBChunksWorldConfig.java
+5
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,11 @@ public interface FTBChunksWorldConfig {
48
48
DoubleValueMAX_IDLE_DAYS_BEFORE_UNFORCE = FORCE_LOADING.addDouble("max_idle_days_before_unforce", 0D, 0D, 3650D).comment("Maximum time (in real-world days) where if no player in a team logs in, any forceloaded chunks owned by the team are no longer forceloaded.", "Prevents chunks being forceloaded indefinitely by teams who no longer play.","Default of 0 means no automatic loss of forceloading.");
49
49
IntValueHARD_TEAM_FORCE_LIMIT = FORCE_LOADING.addInt("hard_team_force_limit", 0, 0, Integer.MAX_VALUE).comment("Hard limit for the number of chunks a team can force-load, regardless of how many members. Default of 0 means no hard limit.");
BooleanValueWAYPOINT_SHARING_SERVER = WAYPOINT_SHARING.addBoolean("waypoint_sharing_server", true).comment("Allow players to share waypoints with the entire server.");
53
+
BooleanValueWAYPOINT_SHARING_PARTY = WAYPOINT_SHARING.addBoolean("waypoint_sharing_party", true).comment("Allow players to share waypoints with their party.");
54
+
BooleanValueWAYPOINT_SHARING_PLAYERS = WAYPOINT_SHARING.addBoolean("waypoint_sharing_players", true).comment("Allow players to share waypoints with other players.");
0 commit comments