Skip to content

Commit c5acca4

Browse files
committed
Patch changelog
1 parent 901781a commit c5acca4

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
Due to some internal changes and fixes, the minimum version of neoforge was raised to 21.1.186, minecolonies to 1.1.1020-1.21.1-snapshot and CC:Tweaked to 1.116.0
11+
12+
### Added
13+
- [#761] Added hungarian translation, thanks to @bayi!
14+
- [#757] Added UTF8 support to the chat box, thanks to @456dev!
15+
16+
### Fixed
17+
- [#760] Fixed support with the latest CC version
18+
- Omit the data components property of lua item stack tables when an error occurred. This fixes a rare issue with the colony integrator when trying to parse enchantments. Fingerprints can be used to filter different enchanted items, that will eventually be fixe when we find a fix for it.
19+
- [#752] Fixed that export/import functions of the ME Bridge would return nil when the requested amount couldn't be exported
20+
921
## [1.21.1-0.7.51b] - 2025-06-21
1022

1123
### Added

src/main/java/de/srendi/advancedperipherals/common/addons/computercraft/peripheral/ColonyPeripheral.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ public final Object getRequests() throws LuaException {
276276
map.put("state", request.getState().toString());
277277
map.put("count", deliverableRequest.getCount());
278278
map.put("minCount", deliverableRequest.getMinimumCount());
279-
map.put("items", request.getDeliveries().stream().map(item -> LuaConverter.itemStackToObject(item, getLevel())).collect(Collectors.toList()));
279+
map.put("items", request.getDisplayStacks().stream().map(item -> LuaConverter.itemStackToObject(item, getLevel())).collect(Collectors.toList()));
280280
map.put("target", request.getRequester().getRequesterDisplayName(requestManager, request).getString());
281281
result.add(map);
282282
});

0 commit comments

Comments
 (0)