forked from VoxeLibre/VoxeLibre
parent
3a47e8a2f9
commit
3aa26cac14
|
@ -105,7 +105,7 @@ local tropical_fish = {
|
|||
on_rightclick = function(self, clicker)
|
||||
if clicker:get_wielded_item():get_name() == "mcl_buckets:bucket_water" then
|
||||
self.object:remove()
|
||||
--clicker:set_wielded_item("mcl_fishing:bucket_tropical_fish")
|
||||
clicker:set_wielded_item("mcl_fishing:bucket_tropical_fish")
|
||||
awards.unlock(clicker:get_player_name(), "mcl:tacticalFishing")
|
||||
end
|
||||
end,
|
||||
|
|
|
@ -520,9 +520,9 @@ end )
|
|||
-- Fish Buckets
|
||||
fish_names = {
|
||||
{ techname = "cod", name = "Cod" },
|
||||
{ techname = "salmon", name = "Salmon" }
|
||||
{ techname = "salmon", name = "Salmon" },
|
||||
--{ techname = "pufferfish", name = "Pufferfish" } FIXME: Uncomment when pufferfish mobs are added.
|
||||
--{ techname = "tropical_fish", name = "Tropical Fish" } FIXME: Uncomment when pufferfish mobs are added.
|
||||
{ techname = "tropical_fish", name = "Tropical Fish" }
|
||||
}
|
||||
|
||||
for _, fish in pairs(fish_names) do
|
||||
|
|
|
@ -18,6 +18,7 @@ Catches fish in water=
|
|||
Very poisonous=
|
||||
Cod=
|
||||
Salmon=
|
||||
Tropical Fish=
|
||||
Bucket of @1=
|
||||
This bucket is filled with water and @1.=
|
||||
Place it to empty the bucket and place a @1. Obtain by right clicking on a @2 fish with a bucket of water.=
|
||||
|
|
Loading…
Reference in New Issue