Commit Graph

194 Commits

Author SHA1 Message Date
John Cole
6ada9ce5bf Merge ee3eebd529 into 80d35c8215 2017-12-15 02:36:05 +00:00
Foz
ee3eebd529 Improve drop name extraction logic.
This one line deletes characters up to and including the last colon wherever that may be.
2017-12-14 21:35:45 -05:00
Jat15
80d35c8215 Add listring for circular saw 2017-11-20 15:09:37 -08:00
Hugo Locurcio
65e3afdd8b
Update changelog to add the recently-merged bug fix 2017-11-20 23:13:16 +01:00
fishyWET
1fa4669ae8 Fix "replacement when inv is full" (#85)
* fix replacement when inv is full.

* Use allow_metadata_inventory_take instead
2017-11-20 23:09:27 +01:00
Hugo Locurcio
f2ede87a5a Fix the version comparison links in the changelog 2017-10-05 19:06:57 +02:00
Hugo Locurcio
16ae14f458 Prepare for v1.1.0 release
- Rewrite the README entirely with new installation instructions
- Tweak the styling in CONTRIBUTING.md and CHANGELOG.md
2017-10-04 20:43:50 +02:00
Hugo Locurcio
59c384dca4 Update the change log with new additions in More Blocks 2017-10-02 23:54:40 +02:00
Hugo Locurcio
df8c150c9a Add Sokomine to the copyright line of circular_saw.lua 2017-09-03 00:46:49 +02:00
AntumDeluge
7347b05e3e Replace deprecated methods:
- 'setting_get' with 'settings:get'
- 'setting_getbool' with 'settings:get_bool'
2017-08-12 14:08:24 -07:00
AntumDeluge
acd570ba0d Replace deprecated function 'intllib.Getter':
- Check first for 'intllib.make_gettext_pair', otherwise continue using
deprecated function
2017-08-12 14:08:04 -07:00
AntumDeluge
f3005d6367 Call 'global_exists' in place of 'get_modpath' for 'intllib' check 2017-08-12 14:08:04 -07:00
lemon-melon
fc3c5f4738 Support tin and silver/sandstone blocks (#79)
Allows tin blocks and silver/desert sandstone blocks to be used in the circular saw.
2017-08-12 14:07:33 -07:00
Fixer
fbfb079f54 Make wool sawable (#72)
* Make wool sawable

Based on my simple research https://github.com/minetest-mods/moreblocks/issues/71 enabling wool should not cause major slowdowns.

Code pasted from gloopblocks

* List wool as optional dependancy

* Added check for wool dependancy

* Make life easier for translators
2017-03-14 22:13:16 -07:00
Vanessa Ezekowitz
e9c6cef4dd build a list of all of the stairsplus slab/stair/etc... shapes (#70)
for other mods to reference.
2017-02-23 17:12:36 +01:00
Hugo Locurcio
5f35766ed0 Update change log with the new Stairs+ nodes 2017-02-23 17:10:49 +01:00
Vanessa Ezekowitz
f4b68fbfd7 add some 0.4.15 default nodes to table saw, including farming:straw (#69)
* add some 0.4.15 default nodes to table saw
including farming:straw

* fix hard-coded drop
2017-02-23 17:08:22 +01:00
Hugo Locurcio
6a1ffa7651 Update change log with the new circular saw nodes 2017-02-21 23:01:41 +01:00
Vanessa Ezekowitz
0569ff9683 add a few new shapes to the table saw: (#67)
* 1/16 slab, L-shaped (two sides)
* 1/16 slab, corner-shaped (three sides)
* 1/16 slab, U-shaped (three sides)
2017-02-21 22:58:40 +01:00
Hugo Locurcio
6f033c1695 Add a contribution guide 2017-02-20 18:37:22 +01:00
Hugo Locurcio
831bbb2b27 Prepare for v1.0.0 release 2017-02-19 13:35:16 +01:00
Thomas--S
4ad4dc958f Remove crafting recipes regarding removed jungle sticks
Forgotten in 34c01e66c7
2017-01-27 11:21:45 -08:00
Vanessa Ezekowitz
cf1b054a99 allow passing paramtype2 to the nodes being created (#65) 2017-01-26 22:11:45 +01:00
Auke Kok
81f77ae97e Prevent creating a global 2016-12-31 12:33:09 -08:00
Auke Kok
085e9d56bc Remove unused gui_slots 2016-12-31 12:33:09 -08:00
Auke Kok
5500c9906c Run cleanfile on all files, fixing whitespace issues. 2016-12-31 12:33:09 -08:00
Auke Kok
d587b4d23f Add luacheckrc file. 2016-12-31 12:33:09 -08:00
Diego Martínez
01b411c753 Don't unnecessarily break on stable 0.4.14. (#62)
This uses the metal sounds when available
(0.4.14-dev), or the stone sounds otherwise.
2016-12-19 13:29:17 +01:00
pithydon
2bd998e791 a few multi texture models 2016-12-15 15:12:53 -08:00
Richard Qian
de620e4ff8 Some fixes for keeping in line with the default game (#59)
* Tweak some nodes

- Add function for recently-added metal sounds, and make copper patina use this sound
- Add all the wood tiles to the wood group
- Make empty bookshelf usable as fuel for half the time of book and vessel shelves (for 15 seconds)

* Return the books when crafting enpty bookshelves
2016-12-03 18:53:07 +01:00
Thomas--S
7f06db2200 Add Alias Functions (#54)
* register_alias
* register_alias_force
2016-10-03 12:14:34 +02:00
Auke Kok
ab2c63270f Max light source is 14. (#56) 2016-09-19 10:09:40 -07:00
pithydon
15033a3514 use valid license for my texture (#51) 2016-08-19 12:04:14 +02:00
Thomas--S
34c01e66c7 Remove unnecessary things (#47)
* Removed Junglwood fences -> Alias with default:fence_junglewood
* Removed Jungle stick -> Alias with default:stick
* Removed unnecessary redefinitions because all the overridden options are the same as in minetest_game.
2016-07-12 12:55:15 -07:00
John Cole
26a5273dd6 Fix drop logic. (#49)
The code

		not type(fields.drop) == "table"

was always false because it compares a boolean with a string,

		not (type(fields.drop) == "table")

is the intended logic.
2016-07-12 12:49:43 -07:00
Thomas--S
db93277a98 Add support for the alternative drop syntax (#46)
Until now, when the moreblocks node for a node with the alternative drop syntax were registered, the game crashed.
2016-06-17 12:15:02 -07:00
Luka Vandervelden
30fba0ea40 Aspen tree registration in stairsplus. (#44) 2016-06-10 10:47:18 -07:00
pithydon
27051c782e update readme for copperpatina (#40)
* add pithydon in credits
2016-05-19 22:41:40 -07:00
pithydon
eb3f9363d5 add node copper patina (#37)
Good for building things like the statue of liberty.
2016-05-18 15:02:28 -07:00
Emon
fa6937ce7b Italian locale (#39) 2016-05-18 15:00:21 -07:00
Auke Kok
f92a938d75 Prevent glass slabs from becoming transparent on sides/bottom.
For all glasslike drawtype nodes, the tiles contain up to 2
textures. The second texture is for "connected" glass, but that
likely is a transparent texture. If we use the `tiles` def without
modification, we will make all those slabs/slopes transparent on all
sides except the top.

To fix, we remove the tiles[2] from the tiledef in case the node is
a glasslike drawtype.
2016-02-19 13:35:36 -08:00
Calinou
1eafd4473d Merge pull request #31 from minetest-mods/sofar-patch-4
Prevent input stack_max from overflowing
2016-02-14 12:23:53 +01:00
Auke Kok
2c63648f42 Prevent input stack_max from overflowing
Adds a check to see if recycle stack wouldn't overflow the input stack. If so, then
the items are just put in the recycle slot and they can be taken out again.
2016-02-13 22:20:12 -08:00
Calinou
4cf2237cc1 Merge pull request #28 from minetest-mods/sofar-patch-1
Fix warning
2016-01-27 13:52:46 +01:00
Calinou
da36099cfa Merge pull request #29 from minetest-mods/sofar-patch-2
Add mod.conf
2016-01-27 13:52:40 +01:00
Calinou
d4f9e4d094 Merge pull request #30 from minetest-mods/sofar-patch-3
Add description.txt
2016-01-27 13:52:34 +01:00
Auke Kok
0a42110dd0 Add description.txt 2016-01-26 12:58:51 -08:00
Auke Kok
ddc9a3cbf4 Add mod.conf 2016-01-26 12:58:04 -08:00
Auke Kok
cdc50bc069 Fix warning
Fixes #25
2016-01-26 12:52:55 -08:00
Calinou
ea667f90a4 Merge pull request #26 from cmdskp/patch-1
Resolves swapping different blocks between inventories
2015-12-26 15:12:54 +01:00