Add maxStepHeight to PlayerStartMovementTemplateNumberDraft

This commit is contained in:
2026-04-11 21:00:09 +02:00
parent 51a249a2cd
commit 72160d5395

View File

@@ -324,6 +324,7 @@ interface Vec3Draft {
interface PlayerStartMovementTemplateNumberDraft {
moveSpeed: string;
maxSpeed: string;
maxStepHeight: string;
jumpSpeed: string;
jumpBufferMs: string;
coyoteTimeMs: string;
@@ -592,6 +593,7 @@ function createPlayerStartMovementTemplateNumberDraft(
return {
moveSpeed: String(template.moveSpeed),
maxSpeed: String(template.maxSpeed),
maxStepHeight: String(template.maxStepHeight),
jumpSpeed: String(template.jump.speed),
jumpBufferMs: String(template.jump.bufferMs),
coyoteTimeMs: String(template.jump.coyoteTimeMs),