Fix pond detection in player_goFishing

Fixes #1678
Fixed for vanilla too:

8a18fe957c

Ponds and lakes were not being detected at all, neither on foot nor in a
boat.

Tested land (failure), pond, lake and shore both on foot and in a boat.
Working as intended now.
This commit is contained in:
ebaydayz
2016-04-25 21:53:24 -04:00
parent a57d0b14ae
commit d63f48af85
3 changed files with 16 additions and 24 deletions

View File

@@ -29,17 +29,17 @@ class Category_630 {
buy[] = {2,"ItemSilverBar10oz"};
sell[] = {1,"ItemSilverBar10oz"};
};
class FishCookedTrout {
class FishCookedTrout { // most common
type = "trade_items";
buy[] = {2,"ItemGoldBar"};
sell[] = {1,"ItemSilverBar10oz"};
};
class FishCookedSeaBass {
class FishCookedSeaBass { // less common
type = "trade_items";
buy[] = {3,"ItemGoldBar"};
sell[] = {2,"ItemSilverBar10oz"};
};
class FishCookedTuna {
class FishCookedTuna { // rarest
type = "trade_items";
buy[] = {4,"ItemGoldBar"};
sell[] = {1,"ItemGoldBar"};