about summary refs log tree commit diff
path: root/src/util/promise.rs
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2019-07-29T01·32-0400
committerGriffin Smith <root@gws.fyi>2019-07-29T01·32-0400
commitba7bec9a3e36eaf2af65677b02884172241d1b24 (patch)
tree4bdd067a2e3ba95564a9d84b409b6c3190afa4a0 /src/util/promise.rs
parent10fb09eca27991e878bee4a4c63d0ecd6b4a44b3 (diff)
Re-draw entities when you walk over them
This also required making the noodles character not actually the emoji,
since the emoji being double-width means it still gets overwritten when
you walk to the right of it (D:)
Diffstat (limited to 'src/util/promise.rs')
-rw-r--r--src/util/promise.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util/promise.rs b/src/util/promise.rs
index 41f3d76e7737..63fbca1ddc18 100644
--- a/src/util/promise.rs
+++ b/src/util/promise.rs
@@ -153,7 +153,6 @@ impl<'a, Env> Promises<'a, Env> {
     }
 
     pub fn give_all(&mut self, env: &mut Env) {
-        debug!("promises: {}", self.ps.len());
         self.ps.retain(|p| !p.give(env));
     }
 }