mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-21 03:10:54 -04:00
1.16 - Just mapping updates
This commit is contained in:
parent
0a6f2a70dc
commit
b7084faa30
5 changed files with 5 additions and 5 deletions
|
@ -13,7 +13,7 @@ def ENV = System.getenv()
|
|||
|
||||
class Globals {
|
||||
static def baseVersion = "0.13.1"
|
||||
static def mcVersion = "1.16-rc1"
|
||||
static def mcVersion = "1.16"
|
||||
static def yarnVersion = "+build.1"
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
archivesBaseName = "fabric-rendering-fluids-v1"
|
||||
version = getSubprojectVersion(project, "0.1.7")
|
||||
version = getSubprojectVersion(project, "0.1.8")
|
||||
|
||||
dependencies {
|
||||
compile project(path: ':fabric-api-base', configuration: 'dev')
|
||||
|
|
|
@ -85,7 +85,7 @@ public class MixinFluidRenderer {
|
|||
|
||||
// Has other uses but those have already happened by the time the hook is called.
|
||||
final FluidRendererHookContainer ctr = fabric_renderHandler.get();
|
||||
return chk || !ctr.state.matches(FluidTags.WATER);
|
||||
return chk || !ctr.state.isIn(FluidTags.WATER);
|
||||
}
|
||||
|
||||
@ModifyVariable(at = @At(value = "INVOKE", target = "net/minecraft/client/render/block/FluidRenderer.isSameFluid(Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/Direction;Lnet/minecraft/fluid/FluidState;)Z"), method = "render", ordinal = 0)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
archivesBaseName = "fabric-tag-extensions-v0"
|
||||
version = getSubprojectVersion(project, "0.2.5")
|
||||
version = getSubprojectVersion(project, "0.2.6")
|
||||
|
||||
dependencies {
|
||||
compile project(path: ':fabric-api-base', configuration: 'dev')
|
||||
|
|
|
@ -24,7 +24,7 @@ import net.minecraft.tag.Tag;
|
|||
import net.fabricmc.fabric.api.tag.FabricTag;
|
||||
import net.fabricmc.fabric.impl.tag.extension.FabricTagHooks;
|
||||
|
||||
@Mixin(targets = {"net.minecraft.tag.Tag$1", "net.minecraft.tag.GlobalTagAccessor$CachedTag", "net.minecraft.class_5394"})
|
||||
@Mixin(targets = {"net.minecraft.tag.Tag$1", "net.minecraft.tag.GlobalTagAccessor$CachedTag", "net.minecraft.tag.SetTag"})
|
||||
public abstract class MixinTagImpl<T> implements FabricTag<T>, FabricTagHooks, Tag<T> {
|
||||
@Unique
|
||||
private int fabric_clearCount;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue