Issue information

Issue ID
#2374
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Oct 22, 2008 18:14
Last Post
Hercules Elf Bot
Mar 5, 2012 9:18
Confirmation
N/A

Hercules Elf Bot - Oct 22, 2008 18:14

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

Do the personality test, then say you want to choose a different job.

If your personality test showed "swordsman", you were nott given an option for another job.
If it showed anything else, you will have "Swordsman" repeated 5 times in the list.

Original code:
CODE
3846            if(.@JOBS$[@i] == getarg(0)) set .@menu$,.@menu":";
3847                else set .@menu$,.@menu.@JOBS$[@i]+":";


Fixed code (courtesy of Djief):
CODE
3846            if(.@JOBS$[.@i] == getarg(0)) set .@menu$,.@menu":";
3847                else set .@menu$,.@menu.@JOBS$[.@i]+":";