Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Compat(1.20.1): Removed old file causing crashes/renamed function #738

Merged
merged 2 commits into from
Feb 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
renamed function
  • Loading branch information
FluffyJenkins committed Feb 16, 2024
commit aea6bf6d2807a7595bf8ace099f1f74989eb6884
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class MixinBigOutlines {
target = "Lnet/minecraft/client/player/LocalPlayer;getEyePosition(F)Lnet/minecraft/world/phys/Vec3;"
), locals = LocalCapture.CAPTURE_FAILHARD
)
private static void stuff(final CallbackInfo ci, final Minecraft mc) {
private static void injectPick(final CallbackInfo ci, final Minecraft mc) {
if (mc.hitResult != null && mc.level != null && mc.player != null && mc.hitResult.getType() == Type.BLOCK) {
valkyrienskies$toShip = false;
final boolean playerOnShip = VSGameUtilsKt.isBlockInShipyard(mc.level, mc.player.getOnPos());
Expand Down
Loading