summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-04-06 14:55:08 -0400
committerseth <[email protected]>2023-04-07 03:42:48 -0400
commit9a1a1b791aeb169dcade5c46862ea6eee060350a (patch)
tree497d0e03d33bd49f8606e920804709942b9ee77c
parenta657491386cb5417b9ddae71915fd55e46aac6b1 (diff)
fix type declaration
-rw-r--r--src/utils.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils.rs b/src/utils.rs
index 46c2459..27b6dba 100644
--- a/src/utils.rs
+++ b/src/utils.rs
@@ -48,7 +48,7 @@ const RESPONSES: [&str; 20] = [
"<:manythoughtsheadfull:1065887153399283742>",
];
-const LORE; [&str; 19] = [
+const LORE: [&str; 19] = [
"Teawie is made of silly string and blood.",
"Teawie has the mentality of an eight year old, but no discernable age.",
"Teawie can change size to fit into tight spaces. Although prefers to be small most of the time.",
@@ -69,6 +69,7 @@ const LORE; [&str; 19] = [
"Teawie has a Go-Kart that he will sometimes drive around in, however due to being mentally eight years old at a base \"knowledge level\", is not good at all with driving, however despite numerous crashes, ends up unscathed.",
"Teawie will \"insert\" himself into various media while trying to move from host to host.",
];
+
/*
* chooses a random response out of our options
*/