diff --git a/pumpkin/src/commands/mod.rs b/pumpkin/src/commands/mod.rs index 8eea87a11..3a06cfdab 100644 --- a/pumpkin/src/commands/mod.rs +++ b/pumpkin/src/commands/mod.rs @@ -26,7 +26,7 @@ impl<'a> CommandSender<'a> { // TODO: add color and stuff to console CommandSender::Console => log::info!("{}", text.to_pretty_console()), CommandSender::Player(c) => c.send_system_message(text), - CommandSender::Rcon(s) => s.push(format!("{:?}", text.content)), + CommandSender::Rcon(s) => s.push(format!("{}", text.to_pretty_console())), } }