set 'save-body-settings' default value to true

This commit is contained in:
MihailRis 2024-10-29 15:25:22 +03:00
parent a78315b39c
commit e37e45d9d5
2 changed files with 2 additions and 2 deletions

View File

@ -99,4 +99,4 @@
| save-skeleton-pose | поза скелета сущности | false |
| save-skeleton-textures | динамически назначенные текстуры | false |
| save-body-velocity | скорость движения тела | true |
| save-body-settings | измененные настройки тела <br>(type, damping, crouching) | false |
| save-body-settings | измененные настройки тела <br>(type, damping, crouching) | true |

View File

@ -45,7 +45,7 @@ struct EntityDef {
} skeleton;
struct {
bool velocity = true;
bool settings = false;
bool settings = true;
} body;
} save {};