Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
moreores
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
moreores
Compare revisions
75f42aaaa9eaece50ba7d946d3dd179ee59f01ff to 1b18b1bf2ece25ff06391eb9c8ba26a9d315f5a8
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
Illuna-Minetest/moreores
Select target project
No results found
1b18b1bf2ece25ff06391eb9c8ba26a9d315f5a8
Select Git revision
Branches
master
Swap
Target
Illuna-Minetest/moreores
Select target project
Illuna-Minetest/moreores
1 result
75f42aaaa9eaece50ba7d946d3dd179ee59f01ff
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
add silver and mithrilblocks to moreblocks
· 1b18b1bf
Milan
authored
7 years ago
1b18b1bf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
init.lua
+2
-1
2 additions, 1 deletion
init.lua
moreblocks.lua
+18
-0
18 additions, 0 deletions
moreblocks.lua
with
20 additions
and
1 deletion
init.lua
View file @
1b18b1bf
...
...
@@ -25,7 +25,6 @@ end
local
modpath
=
minetest
.
get_modpath
(
"moreores"
)
dofile
(
modpath
..
"/_config.txt"
)
-- `mg` support:
if
minetest
.
get_modpath
(
"mg"
)
then
dofile
(
modpath
..
"/mg.lua"
)
...
...
@@ -384,3 +383,5 @@ minetest.register_node("moreores:copper_rail", {
if
minetest
.
settings
:
get_bool
(
"log_mods"
)
then
minetest
.
log
(
"action"
,
S
(
"[moreores] loaded."
))
end
dofile
(
modpath
..
"/moreblocks.lua"
)
This diff is collapsed.
Click to expand it.
moreblocks.lua
0 → 100644
View file @
1b18b1bf
register_stair_slab_panel_micro
(
"mithril_block"
,
"block"
,
"moreores:mithril_block"
,
{
cracky
=
3
},
{
"moreores_mithril_block.png"
},
"Mithril Block"
,
"block"
,
0
)
register_stair_slab_panel_micro
(
"silver_block"
,
"block"
,
"moreores:silver_block"
,
{
cracky
=
3
},
{
"moreores_silver_block.png"
},
"Silver Block"
,
"block"
,
0
)
table.insert
(
circular_saw
.
known_stairs
,
"moreores:mithril_block"
)
table.insert
(
circular_saw
.
known_stairs
,
"moreores:silver_block"
)
This diff is collapsed.
Click to expand it.