From 08ca7ae7741447f215b72aba817377ce63bda470 Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Thu, 17 Apr 2025 17:45:45 +0200 Subject: [PATCH] restore encounters add comments --- w/w.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/w/w.c b/w/w.c index 21bd63c..847fb0b 100644 --- a/w/w.c +++ b/w/w.c @@ -713,7 +713,7 @@ void update(char* command) forward(); if ( (x != state.position.x || y != state.position.y) && dice() > 4) { - // gotomonster(); + gotomonster(); } break; case CMD_RIGHT: @@ -889,6 +889,7 @@ void draw() update3dpov(); drawpov3d(); + // todo: would need a compass? printf("\n\n Orientation : "); switch (state.position.orientation) { @@ -946,6 +947,7 @@ void draw() } else if (state.screen == SC_SHOWMAP) { + // need a spell, or to have found a map? drawmap(); }