Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ethereal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
ethereal
Commits
aeb71b08
Commit
aeb71b08
authored
8 years ago
by
TenPlus1
Browse files
Options
Downloads
Patches
Plain Diff
fishing rods catch fish/items from ethereal.fish table
parent
bebb27f1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fishing.lua
+4
-4
4 additions, 4 deletions
fishing.lua
with
4 additions
and
4 deletions
fishing.lua
+
4
−
4
View file @
aeb71b08
...
...
@@ -71,14 +71,14 @@ minetest.register_craft({
})
-- default ethereal fish
loc
al
fish
=
{
ethere
al
.
fish
=
{
{
"ethereal:fish_raw"
},
}
-- xanadu server additional fish
if
minetest
.
get_modpath
(
"xanadu"
)
then
fish
[
2
]
=
{
"mobs:clownfish_raw"
}
fish
[
3
]
=
{
"mobs:bluefish_raw"
}
ethereal
.
fish
[
2
]
=
{
"mobs:clownfish_raw"
}
ethereal
.
fish
[
3
]
=
{
"mobs:bluefish_raw"
}
end
-- Fishing Rod (Baited)
...
...
@@ -101,7 +101,7 @@ minetest.register_craftitem("ethereal:fishing_rod_baited", {
or
node
==
"default:river_water_source"
)
and
math.random
(
1
,
100
)
<
5
then
local
type
=
fish
[
math.random
(
1
,
#
fish
)][
1
]
local
type
=
ethereal
.
fish
[
math.random
(
1
,
#
ethereal
.
fish
)][
1
]
local
inv
=
user
:
get_inventory
()
if
inv
:
room_for_item
(
"main"
,
{
name
=
type
})
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment