From e25dac5aa89baa750a3303cbf43327418ec607ea Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kat=20March=C3=A1n?= <kzm@zkat.tech>
Date: Tue, 13 Apr 2021 12:00:54 -0700
Subject: [PATCH] readme fix

---
 README.md | 2 --
 1 file changed, 2 deletions(-)

diff --git a/README.md b/README.md
index 2b0e6dd..006c114 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,6 @@ pub fn thirsty_scorer_system(
     for (Actor(actor), mut score) in query.iter_mut() {
         if let Ok(thirst) = thirsts.get(*actor) {
             score.set(thirst.thirst);
-            println!("Thirst: {}", thirst.thirst);
         }
     }
 }
@@ -89,7 +88,6 @@ fn drink_action_system(
             match *state {
                 ActionState::Requested => {
                     thirst.thirst = 10.0;
-                    println!("drank some water");
                     *state = ActionState::Success;
                 }
                 ActionState::Cancelled => {
-- 
GitLab