Fix dispense location to be actually where the opening of the dispenser is

This commit is contained in:
grimmauld 2020-09-12 10:23:25 +02:00
parent c572b48bbe
commit 2e938c11bd

View file

@ -3,14 +3,14 @@ package com.simibubi.create.content.contraptions.components.actors.dispenser;
import net.minecraft.dispenser.IPosition; import net.minecraft.dispenser.IPosition;
public class SimplePos implements IPosition { public class SimplePos implements IPosition {
private final int x; private final double x;
private final int y; private final double y;
private final int z; private final double z;
public SimplePos(double x, double y, double z) { public SimplePos(double x, double y, double z) {
this.x = (int) Math.round(x); this.x = x;
this.y = (int) Math.round(y); this.y = y;
this.z = (int) Math.round(z); this.z = z;
} }
@Override @Override