diff --git a/jong/src/tui.rs b/jong/src/tui.rs index 6b17733..ce195ee 100644 --- a/jong/src/tui.rs +++ b/jong/src/tui.rs @@ -107,6 +107,7 @@ fn discard_tile( tiles: Query<&TileId>, ) { // FIXME why is this not consuming the messages? + // TODO disable this when we're not current player? while let Some(message) = selected.read().next() { if let Ok(tile_id) = tiles.get(message.0) { stdb.reducers().discard_tile(tile_id.0).unwrap(); diff --git a/jong/src/tui/render.rs b/jong/src/tui/render.rs index 9163e09..be3e717 100644 --- a/jong/src/tui/render.rs +++ b/jong/src/tui/render.rs @@ -301,3 +301,5 @@ pub(crate) fn render_main_pond( Ok(()) } + +pub(crate) fn render_other_hands() {}