From e37e45d9d568b5ce2125e1d9fecf07c9c62d3551 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Tue, 29 Oct 2024 15:25:22 +0300 Subject: [PATCH] set 'save-body-settings' default value to true --- doc/ru/entity-properties.md | 2 +- src/objects/EntityDef.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ru/entity-properties.md b/doc/ru/entity-properties.md index 3a6825ac..ec11306c 100644 --- a/doc/ru/entity-properties.md +++ b/doc/ru/entity-properties.md @@ -99,4 +99,4 @@ | save-skeleton-pose | поза скелета сущности | false | | save-skeleton-textures | динамически назначенные текстуры | false | | save-body-velocity | скорость движения тела | true | -| save-body-settings | измененные настройки тела
(type, damping, crouching) | false | +| save-body-settings | измененные настройки тела
(type, damping, crouching) | true | diff --git a/src/objects/EntityDef.hpp b/src/objects/EntityDef.hpp index dec61730..53c69c95 100644 --- a/src/objects/EntityDef.hpp +++ b/src/objects/EntityDef.hpp @@ -45,7 +45,7 @@ struct EntityDef { } skeleton; struct { bool velocity = true; - bool settings = false; + bool settings = true; } body; } save {};