Bounty Corks in SW... Why?

Theraze

Active member
> ash $item[disint cork].bounty

Returned: Haunted Wine Cellar (Southwest)
nocombats => false
zone => Manor0
parent => Manor0
parentdesc => Spookyraven (Cellar)
bounty => disintegrating cork
The location that corks want to be found in, officially, is the Southwest. Since the SW location is smack in the middle of adventures.txt, is this just that it's alphabetically last? Is there any easy solution for this to be Haunted Wine Cellar (Automatic) instead?

If so, I'll make a FReq, but since the only real affect is that I end up with a less diverse set of dusty bottles after being done, it's not a huge deal, but... Eh. I notice it everytime it comes up, that mafia suggests SW over everything else.
 

Catch-22

Active member
The bounty location is effectively plucked out of a HashMap, which guarantees no particular order. In your case, Southwest happens to be the first location plucked from the HashMap.

I think it would be possible to use a TreeMap instead and sort alphabetically, which would mean the first location plucked from the map would be "Automatic", thanks to that word conveniently starting with the letter A.
 
Top