Working Well in MP

This commit is contained in:
2026-02-12 18:07:39 -05:00
parent 9e98c54057
commit f38f28c40a
4 changed files with 54 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import java.util.List;
import java.util.Set;
import zombie.characters.IsoGameCharacter;
import zombie.characters.IsoPlayer;
import zombie.core.physics.CarController;
/**
* Resolves the effective driver for constraint auth in chained towing.
@@ -195,4 +196,10 @@ public final class LandtrainConstraintAuthHelper {
}
}
}
public static void safeParkControllerLandtrain(CarController controller) {
if (controller != null) {
controller.park();
}
}
}