mirror of
https://github.com/FabricMC/fabric.git
synced 2025-03-21 20:50:28 -04:00
1.15-pre4
a few mapping changes
This commit is contained in:
parent
ea865a1450
commit
ec40b2e12c
5 changed files with 7 additions and 7 deletions
build.gradle
fabric-item-groups-v0
build.gradle
src/main/java/net/fabricmc/fabric/mixin/item/group/client
fabric-renderer-indigo
|
@ -12,8 +12,8 @@ plugins {
|
|||
def ENV = System.getenv()
|
||||
|
||||
class Globals {
|
||||
static def baseVersion = "0.4.18"
|
||||
static def mcVersion = "1.15-pre3"
|
||||
static def baseVersion = "0.4.19"
|
||||
static def mcVersion = "1.15-pre4"
|
||||
static def yarnVersion = "+build.1"
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
archivesBaseName = "fabric-item-groups-v0"
|
||||
version = getSubprojectVersion(project, "0.1.4")
|
||||
version = getSubprojectVersion(project, "0.1.6")
|
||||
|
||||
dependencies {
|
||||
compile project(path: ':fabric-api-base', configuration: 'dev')
|
||||
|
|
|
@ -119,8 +119,8 @@ public abstract class MixinCreativePlayerInventoryGui extends AbstractInventoryS
|
|||
private void init(CallbackInfo info) {
|
||||
fabric_updateSelection();
|
||||
|
||||
int xpos = left + 170;
|
||||
int ypos = top + 4;
|
||||
int xpos = x + 170;
|
||||
int ypos = y + 4;
|
||||
|
||||
addButton(new FabricCreativeGuiComponents.ItemGroupButtonWidget(xpos + 10, ypos, FabricCreativeGuiComponents.Type.NEXT, this));
|
||||
addButton(new FabricCreativeGuiComponents.ItemGroupButtonWidget(xpos, ypos, FabricCreativeGuiComponents.Type.PREVIOUS, this));
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
archivesBaseName = "fabric-renderer-indigo"
|
||||
version = getSubprojectVersion(project, "0.2.17")
|
||||
version = getSubprojectVersion(project, "0.2.18")
|
||||
|
||||
dependencies {
|
||||
compile project(path: ':fabric-api-base', configuration: 'dev')
|
||||
|
|
|
@ -95,7 +95,7 @@ enum AoFace {
|
|||
this.weightFunc = weightFunc;
|
||||
}
|
||||
|
||||
private static final AoFace[] values = Util.create(new AoFace[6], (neighborData) -> {
|
||||
private static final AoFace[] values = Util.make(new AoFace[6], (neighborData) -> {
|
||||
neighborData[DOWN.getId()] = AOF_DOWN;
|
||||
neighborData[UP.getId()] = AOF_UP;
|
||||
neighborData[NORTH.getId()] = AOF_NORTH;
|
||||
|
|
Loading…
Reference in a new issue