diff --git a/bruty_client/Cargo.toml b/bruty_client/Cargo.toml
index 57976fd..c3c9800 100644
--- a/bruty_client/Cargo.toml
+++ b/bruty_client/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "bruty_client"
 authors = ["skifli"]
-version = "0.3.3"
+version = "0.3.4"
 edition = "2021"
 
 [dependencies]
diff --git a/bruty_client/src/main.rs b/bruty_client/src/main.rs
index 41076f3..7e7bbcb 100644
--- a/bruty_client/src/main.rs
+++ b/bruty_client/src/main.rs
@@ -75,7 +75,7 @@ struct Args {
         short = 'a',
         long = "advanced-generations",
         help = "Number of IDs to be generated in advance (multiply by 64^2)",
-        default_value_t = 64
+        default_value_t = 2
     )]
     advanced_generations: u16,
 }
diff --git a/bruty_server/src/payload_handlers.rs b/bruty_server/src/payload_handlers.rs
index a0e1836..c32a5ac 100644
--- a/bruty_server/src/payload_handlers.rs
+++ b/bruty_server/src/payload_handlers.rs
@@ -1,7 +1,7 @@
 use crate::{SplitSinkExt, WebSocketSender};
 use futures_util::SinkExt;
 
-const ALLOWED_CLIENT_VERSIONS: &[&str] = &["0.3.3"];
+const ALLOWED_CLIENT_VERSIONS: &[&str] = &["0.3.4"];
 
 /// Checks if the connection is authenticated.
 /// If not, it sends an InvalidSession OP code and closes the connection.