Skip to content

Commit

Permalink
Fix another remap=false bug causing crashes on start
Browse files Browse the repository at this point in the history
  • Loading branch information
jsorrell committed Jul 25, 2024
1 parent 5125a92 commit 39aa435
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private Dynamic<?> getBlankBrainDynamic() {
// This only works with the mod on the client side
@Redirect(
method = "getPassengerAttachmentPoint",
at = @At(value = "NEW", target = "(DDD)Lnet/minecraft/world/phys/Vec3;", remap = false))
at = @At(value = "NEW", target = "(DDD)Lnet/minecraft/world/phys/Vec3;"))
protected Vec3 moveTraderForward(double x, double y, double z) {
if (isTraderCamel()) {
return new Vec3(x, y - 0.45, z + 0.09);
Expand Down

0 comments on commit 39aa435

Please sign in to comment.