forked from VoxeLibre/VoxeLibre
Fix nether dust particles using wrong setting
This commit is contained in:
parent
396b65ca04
commit
a3596d22e3
|
@ -1,7 +1,7 @@
|
||||||
mcl_weather.nether_dust = {}
|
mcl_weather.nether_dust = {}
|
||||||
mcl_weather.nether_dust.particlespawners = {}
|
mcl_weather.nether_dust.particlespawners = {}
|
||||||
|
|
||||||
local PARTICLES_COUNT_NETHER_DUST = tonumber(minetest.settings:get("mcl_weather_rain_particles")) or 150
|
local PARTICLES_COUNT_NETHER_DUST = tonumber(minetest.settings:get("mcl_weather_dust_particles")) or 150
|
||||||
|
|
||||||
local psdef= {
|
local psdef= {
|
||||||
amount = PARTICLES_COUNT_NETHER_DUST,
|
amount = PARTICLES_COUNT_NETHER_DUST,
|
||||||
|
|
|
@ -2,7 +2,7 @@ local get_connected_players = minetest.get_connected_players
|
||||||
|
|
||||||
mcl_weather.snow = {}
|
mcl_weather.snow = {}
|
||||||
|
|
||||||
local PARTICLES_COUNT_SNOW = tonumber(minetest.settings:get("mcl_weather_snow_particles")) or 99
|
local PARTICLES_COUNT_SNOW = tonumber(minetest.settings:get("mcl_weather_snow_particles")) or 100
|
||||||
mcl_weather.snow.init_done = false
|
mcl_weather.snow.init_done = false
|
||||||
|
|
||||||
local psdef= {
|
local psdef= {
|
||||||
|
|
|
@ -30,7 +30,7 @@ mcl_weather_thunder_particles (Thunderstorm rain particles) int 900 0
|
||||||
mcl_weather_snow_particles (Snow particles) int 100 0
|
mcl_weather_snow_particles (Snow particles) int 100 0
|
||||||
|
|
||||||
# Amount of nether dust particles. You can reduce this to get better FPS (default: 150)
|
# Amount of nether dust particles. You can reduce this to get better FPS (default: 150)
|
||||||
mcl_weather_snow_particles (Nether dust particles) int 150 0
|
mcl_weather_dust_particles (Nether dust particles) int 150 0
|
||||||
|
|
||||||
# If enabled, breaking blocks will cause them to drop as item.
|
# If enabled, breaking blocks will cause them to drop as item.
|
||||||
# Note that blocks never have drops when in Creative Mode.
|
# Note that blocks never have drops when in Creative Mode.
|
||||||
|
|
Loading…
Reference in New Issue