commit 55a64416cb4024491923456a8879848a33ecddb9
Author: spesk1 <spesk@pm.me>
Date: Sun Jun 2 21:49:11 2019 -0400
Fixed issue where the cop event didn't stop if you were arrested
diff --git a/src/main.rs b/src/main.rs
index 95e9c52..bac87fe 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -423,6 +423,7 @@ fn cops_event(player: &mut Player) {
if arrest == 0 {
println!("The cops got you! They confiscate your cash and stash!");
player.arrested();
+ done = true;
}
} else {
println!("They miss and you keep running!");