Compare commits

...

2 Commits

Author SHA1 Message Date
Scott Richmond
e768323a6c remove printlns, soften language 2025-07-06 19:05:45 -04:00
Scott Richmond
3527530e39 release build 2025-07-06 19:00:45 -04:00
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -517,7 +517,7 @@ impl World {
self.maybe_do_io().await;
if self.kill_signal {
let mut outbox = self.flush_buffers();
outbox.push(MsgOut::Error("Ludus killed by user".to_string()));
outbox.push(MsgOut::Error("Ludus stopped by user".to_string()));
do_io(outbox).await;
return;
}