From f2e9f81fe4ded2aef8235cd7ec31319dcb4b7471 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Mon, 5 Aug 2024 17:27:17 -0700 Subject: [PATCH] special place for debug bots --- src/bot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot.rs b/src/bot.rs index 31b35b5..45c58c1 100644 --- a/src/bot.rs +++ b/src/bot.rs @@ -17,7 +17,7 @@ pub struct BotDebug{ impl BotDebug{ pub fn new()->std::io::Result{ let rng:u128=rand::random(); - let name=format!("{rng:x}"); + let name=format!("debug_bots/{rng:x}"); Ok(Self{ file:std::fs::File::create(name.as_str())?, name,