Skip to content

Commit

Permalink
Bump to version 0.1.9. Fixing a mistake in the code
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicrules1234 committed Oct 4, 2021
1 parent 73812e4 commit 97abe59
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sonicbot"
version = "0.1.8"
version = "0.1.9"
authors = ["Westly Ward <[email protected]>"]
edition = "2018"

Expand Down
12 changes: 6 additions & 6 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ async fn main() {
firstrun = true;
//return;
}
if !aimldirbuf.clone().exists() {
STD_AIML_DIR.extract(aimldirbuf.clone()).unwrap();
}
if !aimldirbuf2.clone().exists() {
STD_AIML_DIR.extract(aimldirbuf2.clone()).unwrap();
}
if !aimldirbuf.clone().exists() {
ALICE_BRAIN_DIR.extract(aimldirbuf.clone()).unwrap();
}
let mut k = Kernel::new();
Expand Down Expand Up @@ -160,10 +160,10 @@ fn main() {
firstrun = true;
//return;
}
if !aimldirbuf.clone().exists() {
STD_AIML_DIR.extract(aimldirbuf.clone()).unwrap();
}
if !aimldirbuf2.clone().exists() {
STD_AIML_DIR.extract(aimldirbuf2.clone()).unwrap();
}
if !aimldirbuf.clone().exists() {
ALICE_BRAIN_DIR.extract(aimldirbuf.clone()).unwrap();
}
let mut k = Kernel::new();
Expand Down

0 comments on commit 97abe59

Please sign in to comment.