diff options
| author | mat <git@matdoes.dev> | 2023-11-18 00:49:44 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-11-18 00:49:44 -0600 |
| commit | 71cd3f021e5aeec81d9b473860702da15668b7c9 (patch) | |
| tree | c4015e92cdea8796cd0a783d0536359abfc62631 /azalea/examples/testbot.rs | |
| parent | e39de79a6b5913cab2ee59cff492317a24726ba4 (diff) | |
| download | azalea-drasl-71cd3f021e5aeec81d9b473860702da15668b7c9.tar.xz | |
make packet an Arc in PacketEvent
Diffstat (limited to 'azalea/examples/testbot.rs')
| -rw-r--r-- | azalea/examples/testbot.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/examples/testbot.rs b/azalea/examples/testbot.rs index a7f34a77..38f8d499 100644 --- a/azalea/examples/testbot.rs +++ b/azalea/examples/testbot.rs @@ -47,7 +47,7 @@ async fn main() -> anyhow::Result<()> { let mut accounts = Vec::new(); - for i in 0..200 { + for i in 0..3 { accounts.push(Account::offline(&format!("bot{i}"))); } |
