Add some comments

This commit is contained in:
2025-10-14 16:24:19 -05:00
parent c835dc96b7
commit 62d4fd34e5
2 changed files with 8 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ OPTIONS=fruit:word
{% include "autopickup.rc" +%} {% include "autopickup.rc" +%}
{# put curses-specific stuff in a block so it can be easily overwritten if desired per-variant #}
{% block curses %} {% block curses %}
OPTIONS=windowtype:curses OPTIONS=windowtype:curses
OPTIONS=!perm_invent OPTIONS=!perm_invent
@@ -29,7 +30,6 @@ OPTIONS=hilite_pet,hilite_pile,!toptenwin
OPTIONS=time,showexp,number_pad:2,lit_corridor OPTIONS=time,showexp,number_pad:2,lit_corridor
OPTIONS=msg_window:reversed,sortloot:full OPTIONS=msg_window:reversed,sortloot:full
OPTIONS=autoquiver OPTIONS=autoquiver
# OPTIONS=invweight,showdmg,showweight
OPTIONS=!cmdassist OPTIONS=!cmdassist
OPTIONS=travel OPTIONS=travel
OPTIONS=disclose:yi ya nv ng yc no OPTIONS=disclose:yi ya nv ng yc no
@@ -39,6 +39,7 @@ OPTIONS=runmode:teleport
OPTIONS=quick_farsight OPTIONS=quick_farsight
OPTIONS=whatis_coord:c OPTIONS=whatis_coord:c
OPTIONS=!implicit_uncursed OPTIONS=!implicit_uncursed
{# block for additional options to keep main set of options together #}
{% block options %} {% block options %}
{% endblock options %} {% endblock options %}
@@ -48,6 +49,7 @@ BIND=M-m:terrain
BIND=C:conduct BIND=C:conduct
BIND=!:annotate BIND=!:annotate
BIND=%:ride BIND=%:ride
{# block for additional bindings to keep main set of bindings together #}
{% block bindings %} {% block bindings %}
{% endblock bindings %} {% endblock bindings %}

View File

@@ -1,7 +1,11 @@
MSGTYPE=hide "Unknown command '.*'." MSGTYPE=hide "Unknown command '.*'."
MSGTYPE=hide "Unknown direction '.*'"
MSGTYPE=hide "You swap places with .*" MSGTYPE=hide "You swap places with .*"
MSGTYPE=hide "Ouch! You bump into a door."
MSGTYPE=hide "attack passes harmlessly through the shade" MSGTYPE=hide "attack passes harmlessly through the shade"
# Tried to block a bunch monsters fighting each other with conflict, but too many false positives got suppressed as well
# MSGTYPE=hide "(It|The .*|.*'s ghost) (misses|touches|bites|hits) (it|the .*|.*'s ghost)" # MSGTYPE=hide "(It|The .*|.*'s ghost) (misses|touches|bites|hits) (it|the .*|.*'s ghost)"
MSGTYPE=hide "The fire doesn't seem to burn (it|the .*|.*'s ghost)" MSGTYPE=hide "The fire doesn't seem to burn (it|the .*|.*'s ghost)"
MSGTYPE=hide "(It|The .*|.*'s ghost) is mildly warmed" MSGTYPE=hide "(It|The .*|.*'s ghost) is mildly warmed"
@@ -17,6 +21,7 @@ MSGTYPE=show "spell (hits|misses)"
MSGTYPE=show "wand (hits|misses)" MSGTYPE=show "wand (hits|misses)"
MSGTYPE=show "dagger (hits|misses)" MSGTYPE=show "dagger (hits|misses)"
MSGTYPE=show "dart (hits|misses)" MSGTYPE=show "dart (hits|misses)"
MSGTYPE=show "arrow (hits|misses)"
MSGTYPE=show "ray (hits|misses)" MSGTYPE=show "ray (hits|misses)"
MSGTYPE=show "death ray" MSGTYPE=show "death ray"
MSGTYPE=show "water flow" MSGTYPE=show "water flow"