Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
siebenstreich committed Jan 10, 2024
1 parent 4a71c76 commit 68d88f4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/custom/schick/rewrite_m302de/seg035.cpp
Expand Up @@ -112,8 +112,9 @@ void FIG_loot_monsters(void)
l_di = l3 = 0;

while (((l1 = host_readws(Real2Host(ds_readd(CURRENT_FIGHT)) + 2 * l_di + FIGHT_LOOT)) != 0) &&
/* ITEM 164 is "BONE WITH RUNES" */
(l_di < 30) && (l1 != 164))
(l_di < 30) && (l1 != ITEM_BONE_WITH_RUNE))
/* Apparently a quick "fix" for an unwanted bone with runes in fight THOR8,
* see https://www.crystals-dsa-foren.de/showthread.php?tid=453&pid=172221#pid172221 */
{
strcpy(a[l_di++], (char*)Real2Host(GUI_name_plural(0, (Bit8u*)get_itemname(l1))));
l3++;
Expand Down

0 comments on commit 68d88f4

Please sign in to comment.