diff --git a/README.md b/README.md
index 2b0e6dd1e46ac5f9a2e92f130458cd6a5b13258b..006c114a4c8f702ce48c0cada2a4289d9c89311a 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 => {