Skip to content

Commit 14a80b9

Browse files
authored
Oops
1 parent e0ea847 commit 14a80b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libFrank/frank.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ void frank_chat(const char *input) {
7979
frank_response = ARRAYRANDOM(highAngerResponses);
8080
}
8181
} else if (STRINC(input, "rat") && (STRINC(input, "give") || STRINC(input, "feed"))) {
82-
if (rand() % 1 == 0) {
82+
if (rand() % 10 == 0) {
8383
if (angerLevel - 1 > 0) {
8484
angerLevel -= 1;
8585
} else {

0 commit comments

Comments
 (0)