Skip to content

Commit 23df587

Browse files
committed
Fix bug where water conveyors set COLPOLY_IS_FLOOR_CONVEYOR
1 parent c51e462 commit 23df587

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fast64_internal/oot/exporter/collision/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def getCollisionData(dataHolder: Optional[Object], transform: Matrix, useMacros:
150150
indices[1], indices[2] = indices[2], indices[1]
151151

152152
# get surface type and collision poly data
153-
useConveyor = colProp.conveyorOption != "None"
153+
useConveyor = colProp.conveyorOption == "Land"
154154
conveyorSpeed = int(Utility.getPropValue(colProp, "conveyorSpeed"), base=16) if useConveyor else 0
155155
shouldKeepMomentum = colProp.conveyorKeepMomentum if useConveyor else False
156156
surfaceType = SurfaceType(

0 commit comments

Comments
 (0)