This commit is contained in:
Tao Tien 2026-02-25 21:08:45 -08:00
parent c68af245af
commit edd389c787
2 changed files with 3 additions and 0 deletions

View file

@ -107,6 +107,7 @@ fn discard_tile(
tiles: Query<&TileId>, tiles: Query<&TileId>,
) { ) {
// FIXME why is this not consuming the messages? // FIXME why is this not consuming the messages?
// TODO disable this when we're not current player?
while let Some(message) = selected.read().next() { while let Some(message) = selected.read().next() {
if let Ok(tile_id) = tiles.get(message.0) { if let Ok(tile_id) = tiles.get(message.0) {
stdb.reducers().discard_tile(tile_id.0).unwrap(); stdb.reducers().discard_tile(tile_id.0).unwrap();

View file

@ -301,3 +301,5 @@ pub(crate) fn render_main_pond(
Ok(()) Ok(())
} }
pub(crate) fn render_other_hands() {}