Issue information

Issue ID
#4092
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Mar 5, 2010 16:05
Last Post
Hercules Elf Bot
Mar 5, 2012 15:00
Confirmation
N/A

Hercules Elf Bot - Mar 5, 2010 16:05

Originally posted by [b]NoH[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=4092

Reported by Etna.

In the list of the rewards:

CODE
                case 9:
                    callsub S_BonusReward,1500,1229;
                    end;
                case 10:
                    callsub S_BonusReward,1500,1235;
                    end;
                case 11:
                    callsub S_BonusReward,1500,1223;
                    end;


The menu above refers to the item 1233, not 1223 (which is already given somewhere else anyway), so it must be:

CODE
                case 9:
                    callsub S_BonusReward,1500,1229;
                    end;
                case 10:
                    callsub S_BonusReward,1500,1235;
                    end;
                case 11:
                    callsub S_BonusReward,1500,1233;
                    end;