mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 13:26:39 +03:00
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:
@@ -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"};
|
||||
|
||||
Reference in New Issue
Block a user