Commit 878cd0d: error in refactoring

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • PowerWyrm
    Prophet
    • Apr 2008
    • 2986

    Commit 878cd0d: error in refactoring

    Spotted while porting the latest changes to my variant...

    In redundant_monster_message():

    Code:
    		/* Check for a matched monster & monster code */
    		if (mon == mon_message_hist[i].mon &&
    				msg_code != mon_message_hist[i].message_code) {
    			return true;
    }
    should be:

    Code:
    		/* Check for a matched monster & monster code */
    		if (mon == mon_message_hist[i].mon &&
    				msg_code [B][COLOR="Red"]==[/COLOR][/B] mon_message_hist[i].message_code) {
    			return true;
    }
    PWMAngband variant maintainer - check https://github.com/draconisPW/PWMAngband (or http://www.mangband.org/forum/viewforum.php?f=9) to learn more about this new variant!
  • Nick
    Vanilla maintainer
    • Apr 2007
    • 9634

    #2
    Fixed in development, thanks.
    One for the Dark Lord on his dark throne
    In the Land of Mordor where the Shadows lie.

    Comment

    Working...
    😀
    😂
    🥰
    😘
    🤢
    😎
    😞
    😡
    👍
    👎