-
Notifications
You must be signed in to change notification settings - Fork 157
Add Mineclone2,Mineclonia,Mineclone5 support. #625
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
JamesClarke7283
wants to merge
32
commits into
minetest-mods:master
Choose a base branch
from
JamesClarke7283:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 6 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
cfe2ee2
Added Mineclone2 support apart from special machines own recipes with…
JamesClarke7283 9d0b609
Added Machine Recipes
JamesClarke7283 535c130
Moved Mineclone2 support for technic to seperate lua file
JamesClarke7283 ff885f5
Optomised code in mcl_support.lua
JamesClarke7283 fe30259
Optomised code some more
JamesClarke7283 35dbebb
More optomization
JamesClarke7283 420e63e
Ores now generate correctly in technic
JamesClarke7283 ca56acd
Fixed blocks now minable
JamesClarke7283 3ed2d96
Fixed blocks not mineable
JamesClarke7283 e04bafc
Added Smelting recipe for making raw_latex in mineclone2
JamesClarke7283 cca5d3b
Made cables mineable
JamesClarke7283 05dc589
Test
JamesClarke7283 6a23212
Cables breakability Fixed again
JamesClarke7283 fae9f76
Fixed copper lump grinding recipe for mineclone2
JamesClarke7283 ffce339
Fixed texture errors
JamesClarke7283 1087e0c
Added MCL CraftGuide for Machine recipes
JamesClarke7283 8857680
Add alloy recipes to mcl_craftrecipes
JamesClarke7283 26a8ab3
Various fixes reccomended by the mod author
JamesClarke7283 58df66b
Major refactor, put compat ingredients in namespace tables
JamesClarke7283 9a23138
Made nodes breakable again
JamesClarke7283 588d36b
Added technic_compat mod to keep compatability functions accessable t…
JamesClarke7283 b96d32b
Added back LV Furnace Recipe
JamesClarke7283 abbb4ea
Fixed coal grinding recipe
JamesClarke7283 5b52a94
Fixed Water Mill Node
JamesClarke7283 ee0bfa0
Fix geothermal generator
JamesClarke7283 16b270c
Fixed Water mill code
JamesClarke7283 21d76f0
Fix Lava geothermal generator
JamesClarke7283 4f59214
Fix cans
JamesClarke7283 50191f7
Removed fortune enchant effects from non ores
JamesClarke7283 af78e5b
Fixed RE battery ingredient
JamesClarke7283 3b70b56
Misc fixes
JamesClarke7283 da4f4f5
Fix crash issue
JamesClarke7283 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| name = concrete | ||
| depends = default | ||
| optional_depends = basic_materials, intllib, moreblocks | ||
| optional_depends = basic_materials, intllib, moreblocks, default | ||
| supported_games = minetest_game,mineclone2 | ||
JamesClarke7283 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| name = extranodes | ||
| depends = default, technic_worldgen, basic_materials, concrete | ||
| optional_depends = unifieddyes, intllib, moreblocks, steel, streetsmod | ||
| depends = technic_worldgen, basic_materials, concrete | ||
| optional_depends = unifieddyes, intllib, moreblocks, steel, streetsmod, default, mcl_core, mcl_sounds | ||
| supported_games = minetest_game,mineclone2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,17 @@ | ||
| -- namespace: technic | ||
| -- (c) 2012-2013 by RealBadAngel <[email protected]> | ||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
| if not minetest.get_translator then | ||
| error("[technic] Your Minetest version is no longer supported." | ||
| .. " (version < 5.0.0)") | ||
| end | ||
|
|
||
|
|
||
|
|
||
| local load_start = os.clock() | ||
|
|
||
| technic = rawget(_G, "technic") or {} | ||
|
|
@@ -37,6 +43,10 @@ local S = technic.getter | |
| -- Read configuration file | ||
| dofile(modpath.."/config.lua") | ||
|
|
||
|
|
||
| -- MineClone2 Support | ||
| dofile(modpath.."/mcl_support.lua") | ||
|
|
||
| -- Helper functions | ||
| dofile(modpath.."/helpers.lua") | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.