]> granicus.if.org Git - nethack/commitdiff
support engraving in blood in special level files
authorcohrs <cohrs>
Thu, 23 Oct 2003 02:36:23 +0000 (02:36 +0000)
committercohrs <cohrs>
Thu, 23 Oct 2003 02:36:23 +0000 (02:36 +0000)
the file format and sp_lev.c supported it, but the level parser didn't

doc/fixes35.0
util/lev_comp.l

index 675fb7a1826380386ce554e75d6ec1f9841b9138..1bef51bc89ba3e925fec376c3cd39a032d8466cf 100644 (file)
@@ -40,6 +40,7 @@ hiding monsters don't hide under cockatrice/chickatrice corpses
 deafness now a full-fledged attribute
 water should flow into pits from broken wand of digging
 objects that fall thru trapdoors, et al, can break on impact
+support engraving in blood in special level files
 
 
 Platform- and/or Interface-Specific Fixes
index 1e7c3ae8c96ba810a463a79ae3365dafc06dfb3c..9a6fc4fa1c3cb0c2ba63d8cd2de2944c9e304ba8 100644 (file)
@@ -190,6 +190,7 @@ dust                { yylval.i=DUST; return ENGRAVING_TYPE; }
 engrave                { yylval.i=ENGRAVE; return ENGRAVING_TYPE; }
 burn           { yylval.i=BURN; return ENGRAVING_TYPE; }
 mark           { yylval.i=MARK; return ENGRAVING_TYPE; }
+blood          { yylval.i=ENGR_BLOOD; return ENGRAVING_TYPE; }
 blessed                { yylval.i=1; return CURSE_TYPE; }
 uncursed       { yylval.i=2; return CURSE_TYPE; }
 cursed         { yylval.i=3; return CURSE_TYPE; }