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
56c6f0ae
Commit
56c6f0ae
authored
9 years ago
by
TenPlus1
Browse files
Options
Downloads
Patches
Plain Diff
Disabling ethereal biomes no longer shows error messages
parent
7ee716e3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+1
-0
1 addition, 0 deletions
README.md
init.lua
+21
-21
21 additions, 21 deletions
init.lua
mapgen_v7n.lua
+193
-416
193 additions, 416 deletions
mapgen_v7n.lua
mapgen_v7n_old.lua
+752
-0
752 additions, 0 deletions
mapgen_v7n_old.lua
with
967 additions
and
437 deletions
README.md
+
1
−
0
View file @
56c6f0ae
...
...
@@ -15,6 +15,7 @@ Ethereal v7 Mapgen mod for Minetest
-
Fixed farming compatibility when using hoe on ethereal dirt
-
Dirt with dry grass turns into green grass when near water
-
Ice or snow above sea level melts into river water
-
Disabling ethereal biomes no longer shows error messages
### 1.18
...
...
This diff is collapsed.
Click to expand it.
init.lua
+
21
−
21
View file @
56c6f0ae
--[[
Minetest Ethereal Mod 1.19 (
27th Nov
ember 2015)
Minetest Ethereal Mod 1.19 (
3rd Dec
ember 2015)
Created by ChinChow
...
...
@@ -38,29 +38,29 @@ ethereal.sandclay = 1 -- Sand areas with clay underneath
local
path
=
minetest
.
get_modpath
(
"ethereal"
)
dofile
(
path
..
"/plantlife.lua"
)
dofile
(
path
..
"/mushroom.lua"
)
dofile
(
path
..
"/onion.lua"
)
dofile
(
path
..
"/crystal.lua"
)
dofile
(
path
..
"/papyrus.lua"
)
dofile
(
path
..
"/flowers.lua"
)
dofile
(
path
..
"/water.lua"
)
dofile
(
path
..
"/dirt.lua"
)
dofile
(
path
..
"/leaves.lua"
)
dofile
(
path
..
"/wood.lua"
)
dofile
(
path
..
"/sapling.lua"
)
dofile
(
path
..
"/strawberry.lua"
)
dofile
(
path
..
"/fishing.lua"
)
dofile
(
path
..
"/extra.lua"
)
dofile
(
path
..
"/sealife.lua"
)
dofile
(
path
..
"/fences.lua"
)
dofile
(
path
..
"/gates.lua"
)
dofile
(
path
..
"/mapgen_v7n.lua"
)
-- 0.4.13+
dofile
(
path
..
"/plantlife.lua"
)
dofile
(
path
..
"/mushroom.lua"
)
dofile
(
path
..
"/onion.lua"
)
dofile
(
path
..
"/crystal.lua"
)
dofile
(
path
..
"/papyrus.lua"
)
dofile
(
path
..
"/flowers.lua"
)
dofile
(
path
..
"/water.lua"
)
dofile
(
path
..
"/dirt.lua"
)
dofile
(
path
..
"/leaves.lua"
)
dofile
(
path
..
"/wood.lua"
)
dofile
(
path
..
"/sapling.lua"
)
dofile
(
path
..
"/strawberry.lua"
)
dofile
(
path
..
"/fishing.lua"
)
dofile
(
path
..
"/extra.lua"
)
dofile
(
path
..
"/sealife.lua"
)
dofile
(
path
..
"/fences.lua"
)
dofile
(
path
..
"/gates.lua"
)
dofile
(
path
..
"/mapgen_v7n.lua"
)
-- 0.4.13+
if
minetest
.
get_modpath
(
"xanadu"
)
then
dofile
(
path
..
"/plantpack.lua"
)
dofile
(
path
..
"/plantpack.lua"
)
else
dofile
(
path
..
"/stairs.lua"
)
dofile
(
path
..
"/stairs.lua"
)
end
print
(
"[MOD] Ethereal mod loaded"
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
mapgen_v7n.lua
+
193
−
416
View file @
56c6f0ae
This diff is collapsed.
Click to expand it.
mapgen_v7n_old.lua
0 → 100644
+
752
−
0
View file @
56c6f0ae
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