From e93c82c724a90a54fff48f390ade9fcfc9dae450 Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Thu, 9 Mar 2023 01:37:56 -0500 Subject: [PATCH] [+] Actually draw grass --- tngame-rs/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tngame-rs/src/main.rs b/tngame-rs/src/main.rs index 3cb6adb..1493a7f 100644 --- a/tngame-rs/src/main.rs +++ b/tngame-rs/src/main.rs @@ -427,6 +427,7 @@ async fn start_update_loop(mt: Arc>, cn: &Consts) -> Result<()> { // Update scenes mt.last_update = now; + mt.draw_grass(); mt.update_snow(dt); draw_ascii_frame(mt.deref_mut(), cn);