Open tariqk opened 1 year ago
its data packable. just make an entity tag called "affects"
tho its not supposed to affect vehicles that arent being ridden in
Is there any chance on it being fixed on your end? I am finding a few people pop up in discords with this issue and spent an hour trying to figure out what mod caused this issue.
Any kind of update on this?
Uh, #vehiclefix:affects
is an entity tag that causes vehiclefix to apply to entities, not that makes it not apply. there'd have to be a #vehiclefix:ignored
tag. Otherwise, I'd have to list out every single valid entity instead (to use the affectsIsEmpty check), which I wouldn't think to be a good long-term solution, considering other mods may assume the tag to be empty or no.
So, I was looking at this to see if I could fix this in create, but I looked in the code and indeed it would not be possible, there would need to be a new tag. I think I will maybe implement the tag later, So just a Heads up.
Hi there! I'm currently encountering this issue when using your mod within Tinkerer's Quilt Modded, and I thought you'd might want to know about it.
I'm currently trying to make a simple Create-based tunnel bore (link to a sample design, though I suspect I'll just wing it in Survival), and I noticed an interaction between VehicleFix and Create that causes it to fail.
What I'm noticing is that Create treats moving contraptions, especially those using the Cart Assembler, as vehicles, and their bounding boxes are usually one or two blocks larger than the actual contraption itself (i.e. the mechanical drills are one or two blocks within the bounding box). Which usually isn't a problem, since under normal circumstances the entity will pass through solid blocks until the Mechanical drill component touches the solid block and breaks it, and then continues on its merry way.
Unfortunately based on what VehicleFix is supposed to do, once a vehicle bounding box hits a solid block, it just… stops. And since the bounding box is always going to be bigger than the total contraption itself, the Mechanical drill components don't get to break the obstruction, and, well, devices like tunnel bores fail. I'm not sure what else will fail, but tunnel bores are the ones that affect me.
Not sure what a possible solution could be, at this point — my workaround at this point is to disable VehicleFix on my current modpack, which makes the problem go away.