From f5f82e05d023bb9acf70debff3442f9651c684a6 Mon Sep 17 00:00:00 2001 From: VirxEC Date: Sun, 10 Dec 2023 16:18:22 -0500 Subject: [PATCH] Update RocketSim to remove physics rounding --- Cargo.toml | 2 +- RocketSim | 2 +- src/ext.rs | 1 - src/lib.rs | 1 - 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ead012f..defa0ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rocketsim_rs" description = "Rust bindings for the RocketSim project" -version = "0.22.5" +version = "0.23.0" edition = "2021" license = "MIT" repository = "https://github.com/VirxEC/rocketsim-rs" diff --git a/RocketSim b/RocketSim index e0928f1..f80bfd4 160000 --- a/RocketSim +++ b/RocketSim @@ -1 +1 @@ -Subproject commit e0928f15ac5f8595ab80cc61512b39073af1ff52 +Subproject commit f80bfd4e95ceca7f4844f5d31785b2365c2fb813 diff --git a/src/ext.rs b/src/ext.rs index 0329b5c..ae9963f 100644 --- a/src/ext.rs +++ b/src/ext.rs @@ -78,7 +78,6 @@ impl MutatorConfig { unlimited_double_jumps: false, demo_mode: DemoMode::NORMAL, enable_team_demos: false, - enable_physics_rounding: true, } } } diff --git a/src/lib.rs b/src/lib.rs index 9042e94..47e8fac 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -453,7 +453,6 @@ pub mod sim { unlimited_double_jumps: bool, demo_mode: DemoMode, enable_team_demos: bool, - enable_physics_rounding: bool, } }