diff --git a/fabric-transfer-api-v1/src/main/java/net/fabricmc/fabric/api/transfer/v1/storage/base/SidedStorageBlockEntity.java b/fabric-transfer-api-v1/src/main/java/net/fabricmc/fabric/api/transfer/v1/storage/base/SidedStorageBlockEntity.java index b7f466271..cc9d71065 100644 --- a/fabric-transfer-api-v1/src/main/java/net/fabricmc/fabric/api/transfer/v1/storage/base/SidedStorageBlockEntity.java +++ b/fabric-transfer-api-v1/src/main/java/net/fabricmc/fabric/api/transfer/v1/storage/base/SidedStorageBlockEntity.java @@ -34,11 +34,11 @@ import net.fabricmc.fabric.api.transfer.v1.storage.Storage; *
How it works is that fabric registers fallback providers for instances of this interface. * This can be used for convenient Storage registration, but please always use the SIDED lookups for queries: *
{@code - * StoragemaybeFluidStorage = FluidStorage.SIDED.find(world, pos, direction); + * Storage maybeFluidStorage = FluidStorage.SIDED.find(world, pos, direction); * if (maybeFluidStorage != null) { * // use it * } - * Storage maybeItemStorage = ItemStorage.SIDED.find(world, pos, direction); + * Storage maybeItemStorage = ItemStorage.SIDED.find(world, pos, direction); * if (maybeItemStorage != null) { * // use it * }