- Feb 11, 2017
-
-
rubenwardy authored
-
- Feb 09, 2017
- Feb 02, 2017
-
-
paramat authored
Now that biomes are being specified for blob ores we need a separate set of blob ore registrations for mgv6 which has no Biome API biomes defined. Various minor improvements to mapgen.lua.
-
- Feb 01, 2017
- Jan 27, 2017
-
-
rubenwardy authored
-
- Jan 26, 2017
-
-
paramat authored
-
number Zero authored
-
rubenwardy authored
-
- Jan 22, 2017
-
-
paramat authored
Now that the missing 'default_dig_snappy' sound has been added we can remove the dirt dig sound from the table. All nodes that use the leaves defaults table have group 'snappy' so 'default_dig_snappy' now becomes their default dig sound.
-
Martin Doege authored
Removes the "iCCP: known incorrect sRGB profile" error messages on the console when starting minetest_game by stripping offending color profiles.
-
- Jan 20, 2017
-
-
Auke Kok authored
-
- Jan 16, 2017
-
-
Auke Kok authored
This reverts commit 5e4a6e8a, and commit 60cf3f85. The original door API rewrite I posted had all rotation disabled using the correct on_rotate() handler returning `false`. Two subsequent changes attempting first to enable simple rotation and second disabling that again changed the callback handler to a boolean `false`, which is incorrect use in the screwdriver API, and actually allows rotation. The proper way to disable rotation for facedir nodes it to use a full callback handler that does `return false`.
-
- Jan 15, 2017
-
-
paramat authored
-
Lars Hofhansl authored
TNT removes flammable nodes from the destruction radius and should remove flames within it too because they lose their fuel and would be removed by ABM later anyway.
-
- Jan 12, 2017
-
-
Baptiste Pouget authored
-
Auke Kok authored
Create a simple triplet table (src1, src2, dst) for all the dye recipes and group them logically, with a bit of explanation where they actually come from. This prunes a lot of recipes from the list, but the old list had a ton of combinations that did not make any sense, as well as recipes that were just gross approximations and duplicates, mixing the same color with itself just to get the same color back, which just wastes packets at logon. The list has been checked to allow all colors created from the basic dyes (flowers+coal) so that all colors can be crafted.
-
- Jan 07, 2017
-
-
paramat authored
Craft 4 default:sand to default:sandstone. Previously, 4 group:sand was craftable to sandstone and sandstone was craftable back into default:sand, allowing silver and desert sands to be converted into incorrect colour sandstone and yellow sand.
-
paramat authored
-
paramat authored
Copy-paste and only remove form-feed characters.
-
rubenwardy authored
Added as a new mod as it doesn't fit anywhere else. This is a game play change, so it better suited to Minetest Game rather than builtin Fixes #857
-
- Jan 03, 2017
-
-
rubenwardy authored
Fixes #1364
-
- Jan 02, 2017
-
-
rubenwardy authored
-
paramat authored
Require only 1 mese crystal instead of 3. To make farming in dark locations easier. To reduce and balance recipe ore cost.
-
SmallJoker authored
-
DS-Minetest authored
The cost of TNT remains the same
-
- Dec 21, 2016
-
-
paramat authored
If the boat pos is over limit, 'add entity' will not add an entity, causing 'boat' to be nil.
-
- Dec 17, 2016
-
-
paramat authored
I recently made glass footstep and dig gains too low, raise slightly. Change dirt dug gain from above-maximum 1.5 to maximum 1.0. Reduce gain of footsteps: stone, dirt, gravel, wood, metal Raise gain of leaves footstep.
-
Auke Kok authored
The fuel would remain active even if source went empty, giving free cook time to newly inserted items. This patch is supposed to stop this.
-
- Dec 13, 2016
-
-
paramat authored
Some nodes with the snappy group (wool, glass pane, seeds) were missing sound when dug with a sword. Adding the sound causes it to be used for glass pane, so define a 'dig' sound in the 'node sound glass defaults' table, use the footstep sound. Adding the sound also causes it to be used for seeds which deliberately have no dig sound, so add an empty sound override for seed dig. Reduce the gain of the glass footstep sound which was excessively loud. Add some freesound members to license.txt.
-
- Dec 07, 2016
-
-
paramat authored
Handbrake was barely noticeable and fairly useless. Equalisng with brake rail deceleration makes it more intuitive to use and easier to judge stopping distance.
-
HybridDog authored
This is slightly modified after #1279 - the setting for furnace timer was removed and hardcoded to 1.0s, which is the old furnace timer interval.
-
paramat authored
Previous code: Used looped sounds without attaching them to objects or playing direct to players. The looped sounds are not 'stopped' when players leave the area. These may be causing the bug where sounds are heard at extreme distances. Entering a world with already present flames results in silent flames. Sounds are often played at a large number of points in a 6 node lattice. A large fire is reported to cause a high load, disabling the sound code is reported to help this. New code: Optional flame sound to not interfere with ambience mods. Permanent flame now has sound. For multiple flames, sound is positioned at the centre of all flames, and has volume determined by flame number. The original freesound 'large fire' recording was used to create 3 sounds that play at random for a non-repetitive effect. At low volume it is suitable for small fires. Original sound files and sound function (as an empty function) kept temporarily to reduce disruption. Reduce gain of flame extinguish sound.
-
- Dec 05, 2016
-
-
paramat authored
-
rubenwardy authored
Also sets creative:all as default inventory page Fixes #1423
-
- Dec 04, 2016
-
-
paramat authored
Some GPUs cause visual bugs when mip-mapping is used with indexed textures that use alpha. Because leaves are sometimes rendered opaque it is even more important to keep these as RGBA to preserve the correct background colour.
-
paramat authored
Papyrus: Make base node dirt instead of dirt_with_grass. Formerly the exposed dirt would change to grass but the new grass spread ABM now prevents that. Waterlily: Don't specify a water_source node in the schematic, as it may be used in river water. It was not force-placed but should really be "air" prob = 0.
-
Napiophelios authored
-