Skip to content

Commit

Permalink
fix: šŸ› Fix storage item handler cap to always return the most currentā€¦
Browse files Browse the repository at this point in the history
ā€¦ item handler. Fixes an issue where storage placed in Integrated Dynamics network would not properly show items inserted into it.
  • Loading branch information
P3pp3rF1y committed Dec 12, 2023
1 parent c1c6cd6 commit 7e0d6dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
minecraft_version=1.19.2
forge_version=43.2.13
mod_version=3.19.4
mod_version=3.19.5
jei_mc_version=1.19.2-forge
jei_version=11.6.0.1018
curios_version=1.19.2-5.1.4.3
Expand All @@ -13,5 +13,5 @@ crafting_tweaks_cf_file_id=3914007
chipped_cf_file_id=4558849
ctm_cf_file_id=4393695
resourcefullib_cf_file_id=4477753
sc_version=1.19.2-0.5.106.+
sc_version=1.19.2-0.5.110.+
parchment_version=1.18.2-2022.06.05-1.19
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public <T> LazyOptional<T> getCapability(Capability<T> cap, @Nullable Direction

if (cap == ForgeCapabilities.ITEM_HANDLER) {
if (itemHandlerCap == null) {
itemHandlerCap = LazyOptional.of(() -> new CachedFailedInsertInventoryHandler(getBackpackWrapper().getInventoryForInputOutput(), () -> level != null ? level.getGameTime() : 0));
itemHandlerCap = LazyOptional.of(() -> new CachedFailedInsertInventoryHandler(() -> getBackpackWrapper().getInventoryForInputOutput(), () -> level != null ? level.getGameTime() : 0));
}
return itemHandlerCap.cast();
} else if (cap == ForgeCapabilities.FLUID_HANDLER) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ side="BOTH"
[[dependencies.sophisticatedbackpacks]]
modId="sophisticatedcore" #mandatory
mandatory=true #mandatory
versionRange="[1.19.2-0.5.106,)" #mandatory
versionRange="[1.19.2-0.5.110,)" #mandatory
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
ordering="NONE"
# Side this dependency is applied on - BOTH, CLIENT or SERVER
Expand Down

0 comments on commit 7e0d6dc

Please sign in to comment.