Skip to content

Commit fe3ef0f

Browse files
committed
Revert "Patch changelog" to restart the publish action and prevent changelog issues
This reverts commit c5acca4
1 parent ac6e207 commit fe3ef0f

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ 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-
## [1.21.1-0.7.52b] - 2025-07-06
109

1110
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
1211

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.getDisplayStacks().stream().map(item -> LuaConverter.itemStackToObject(item, getLevel())).collect(Collectors.toList()));
279+
map.put("items", request.getDeliveries().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)