Yarn, loader, api

This commit is contained in:
SD 2020-11-30 10:25:43 +05:30
parent 2402b210e8
commit f0858f69cd
No known key found for this signature in database
GPG key ID: E36B57EE08544BC5
3 changed files with 7 additions and 6 deletions

View file

@ -29,8 +29,6 @@ dependencies {
exclude module: "fabric-api"
}
include 'com.github.Waterpicker:OpenWorlds:c5a1ced'
modImplementation 'com.github.AMereBagatelle:fabricskyboxes:0.3.0'
compileOnly 'com.google.code.findbugs:jsr305:+'
modImplementation("io.github.boogiemonster1o1:libcbe:${libcbe_version}")
include("io.github.boogiemonster1o1:libcbe:${libcbe_version}") // Includes LibCBE as a Jar-in-Jar embedded dependency
modImplementation("curse.maven:worldedit:3039223") // For saving schematics

View file

@ -1,8 +1,8 @@
minecraft_version=1.16.3
yarn_mappings=1.16.3+build.26
loader_version=0.10.1+build.209
minecraft_version=1.16.4
yarn_mappings=1.16.4+build.7
loader_version=0.10.8
fabric_version=0.21.0+build.407-1.16
fabric_version=0.27.1+1.16
libcbe_version = 1.1.0

View file

@ -1,6 +1,8 @@
package org.dimdev.dimdoors.rift.targets;
import com.mojang.serialization.Codec;
import org.dimdev.dimdoors.util.TeleportUtil;
import org.dimdev.dimdoors.world.ModDimensions;
import net.minecraft.entity.Entity;
@ -13,6 +15,7 @@ public class LimboTarget extends VirtualTarget implements EntityTarget {
@Override
public boolean receiveEntity(Entity entity, float yawOffset) {
TeleportUtil.teleport(entity, ModDimensions.LIMBO_DIMENSION, entity.getPos(), yawOffset);
//FabricDimensions.teleport(entity, entity.getServer().getWorld(LIMBO));
return true;
}