Aha. Yes, that makes sense.
Unangband 0.6.3 released
Collapse
X
-
I'll fix up the dungeon.txt file to correct all instances of this bug - please download the revised fix from http://svn.berlios.de/svnroot/repos/...it/dungeon.txt
AndrewLast edited by andrewdoull; June 14, 2009, 20:47.The Roflwtfzomgbbq Quylthulg summons L33t Paladins -more-
In UnAngband, the level dives you.
ASCII Dreams: http://roguelikedeveloper.blogspot.com
Unangband: http://unangband.blogspot.com
Comment
-
Comment
-
Two random bugs (I think) I stumpled upon during code diving tours:
- The svals of guitars and drums seems to be wrong, they don't match the corresponding song books as required for the bonus spell power.
- line 2637 of spells2.c
Code:else chance = enchant_table[o_ptr->to_d + 10 - o_ptr->dd - o_ptr->ds];
Code:else chance = enchant_table[o_ptr->to_d + 10 - o_ptr->dd * o_ptr->ds];
Comment
-
Two random bugs (I think) I stumpled upon during code diving tours:
- The svals of guitars and drums seems to be wrong, they don't match the corresponding song books as required for the bonus spell power.
- line 2637 of spells2.c
Code:else chance = enchant_table[o_ptr->to_d + 10 - o_ptr->dd - o_ptr->ds];
Code:else chance = enchant_table[o_ptr->to_d + 10 - o_ptr->dd * o_ptr->ds];
Let me know if you want SVN access.
AndrewThe Roflwtfzomgbbq Quylthulg summons L33t Paladins -more-
In UnAngband, the level dives you.
ASCII Dreams: http://roguelikedeveloper.blogspot.com
Unangband: http://unangband.blogspot.com
Comment
Comment