From 87e8d527b04a919a8aad6f30fd0337715c1db997 Mon Sep 17 00:00:00 2001 From: nullifiedcat Date: Thu, 27 Jul 2017 23:39:28 +0300 Subject: [PATCH] changed vars a bit for a smoother walkbot experience --- src/hacks/Walkbot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hacks/Walkbot.cpp b/src/hacks/Walkbot.cpp index fefeeb00..5d36a007 100644 --- a/src/hacks/Walkbot.cpp +++ b/src/hacks/Walkbot.cpp @@ -350,9 +350,9 @@ CatVar draw_path(CV_SWITCH, "wb_path", "1", "Walkbot path"); CatVar draw_nodes(CV_SWITCH, "wb_nodes", "1", "Walkbot nodes"); CatVar draw_indices(CV_SWITCH, "wb_indices", "0", "Node indices"); CatVar free_move(CV_SWITCH, "wb_freemove", "1", "Allow free movement", "Allow free movement while pressing movement keys"); -CatVar spawn_distance(CV_FLOAT, "wb_node_spawn_distance", "48", "Node spawn distance"); +CatVar spawn_distance(CV_FLOAT, "wb_node_spawn_distance", "54", "Node spawn distance"); CatVar max_distance(CV_FLOAT, "wb_replay_max_distance", "100", "Max distance to node when replaying"); -CatVar reach_distance(CV_FLOAT, "wb_replay_reach_distance", "16", "Distance where bot can be considered 'stepping' on the node"); +CatVar reach_distance(CV_FLOAT, "wb_replay_reach_distance", "32", "Distance where bot can be considered 'stepping' on the node"); CatVar draw_connection_flags(CV_SWITCH, "wb_connection_flags", "1", "Connection flags"); CatCommand c_start_recording("wb_record", "Start recording", []() { state::state = WB_RECORDING; });