Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / PathfinderGoalWaterJumpAbstract.java
Simon Lindgren on 26 Mar 2020 273 bytes first commit
package net.minecraft.server;

import java.util.EnumSet;

public abstract class PathfinderGoalWaterJumpAbstract extends PathfinderGoal {

    public PathfinderGoalWaterJumpAbstract() {
        this.a(EnumSet.of(PathfinderGoal.Type.MOVE, PathfinderGoal.Type.JUMP));
    }
}