2011-11-27 17:45:34 -05:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-11-27 17:45:34 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2011-11-27 17:45:34 -05:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-11-27 17:45:34 -05:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-11-27 17:45:34 -05:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "content_abm.h"
|
|
|
|
|
|
|
|
#include "environment.h"
|
|
|
|
#include "gamedef.h"
|
|
|
|
#include "nodedef.h"
|
|
|
|
#include "content_sao.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "mapblock.h" // For getNodeBlockPos
|
2012-12-29 10:20:09 -05:00
|
|
|
#include "treegen.h" // For treegen::make_tree
|
2013-02-24 09:39:07 -05:00
|
|
|
#include "main.h" // for g_settings
|
2012-07-26 15:06:45 -04:00
|
|
|
#include "map.h"
|
2013-08-10 22:09:45 -04:00
|
|
|
#include "scripting_game.h"
|
2013-07-27 14:34:30 -04:00
|
|
|
#include "log.h"
|
2011-11-27 17:45:34 -05:00
|
|
|
|
|
|
|
#define PP(x) "("<<(x).X<<","<<(x).Y<<","<<(x).Z<<")"
|
|
|
|
|
|
|
|
class GrowGrassABM : public ActiveBlockModifier
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
public:
|
|
|
|
virtual std::set<std::string> getTriggerContents()
|
|
|
|
{
|
|
|
|
std::set<std::string> s;
|
2013-01-02 16:03:36 -05:00
|
|
|
s.insert("mapgen_dirt");
|
2011-11-27 17:45:34 -05:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
virtual float getTriggerInterval()
|
2011-11-29 16:22:44 -05:00
|
|
|
{ return 2.0; }
|
2011-11-27 17:45:34 -05:00
|
|
|
virtual u32 getTriggerChance()
|
2011-11-29 16:22:44 -05:00
|
|
|
{ return 200; }
|
2011-11-27 17:45:34 -05:00
|
|
|
virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n)
|
|
|
|
{
|
|
|
|
INodeDefManager *ndef = env->getGameDef()->ndef();
|
|
|
|
ServerMap *map = &env->getServerMap();
|
|
|
|
|
|
|
|
MapNode n_top = map->getNodeNoEx(p+v3s16(0,1,0));
|
2013-04-23 13:02:41 -04:00
|
|
|
content_t c_snow = ndef->getId("snow");
|
2011-11-27 17:45:34 -05:00
|
|
|
if(ndef->get(n_top).light_propagates &&
|
|
|
|
!ndef->get(n_top).isLiquid() &&
|
|
|
|
n_top.getLightBlend(env->getDayNightRatio(), ndef) >= 13)
|
|
|
|
{
|
2013-04-23 13:02:41 -04:00
|
|
|
if(c_snow != CONTENT_IGNORE && n_top.getContent() == c_snow)
|
|
|
|
n.setContent(ndef->getId("dirt_with_snow"));
|
|
|
|
else
|
|
|
|
n.setContent(ndef->getId("mapgen_dirt_with_grass"));
|
2011-11-27 17:45:34 -05:00
|
|
|
map->addNodeWithEvent(p, n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class RemoveGrassABM : public ActiveBlockModifier
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
public:
|
|
|
|
virtual std::set<std::string> getTriggerContents()
|
|
|
|
{
|
|
|
|
std::set<std::string> s;
|
2013-01-02 16:03:36 -05:00
|
|
|
s.insert("mapgen_dirt_with_grass");
|
2011-11-27 17:45:34 -05:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
virtual float getTriggerInterval()
|
2011-11-29 16:22:44 -05:00
|
|
|
{ return 2.0; }
|
2011-11-27 17:45:34 -05:00
|
|
|
virtual u32 getTriggerChance()
|
2011-11-29 16:22:44 -05:00
|
|
|
{ return 20; }
|
2011-11-27 17:45:34 -05:00
|
|
|
virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n)
|
|
|
|
{
|
|
|
|
INodeDefManager *ndef = env->getGameDef()->ndef();
|
|
|
|
ServerMap *map = &env->getServerMap();
|
|
|
|
|
|
|
|
MapNode n_top = map->getNodeNoEx(p+v3s16(0,1,0));
|
2013-01-20 10:21:09 -05:00
|
|
|
if((!ndef->get(n_top).light_propagates &&
|
|
|
|
n_top.getContent() != CONTENT_IGNORE) ||
|
2011-11-27 17:45:34 -05:00
|
|
|
ndef->get(n_top).isLiquid())
|
|
|
|
{
|
2013-01-03 17:32:31 -05:00
|
|
|
n.setContent(ndef->getId("mapgen_dirt"));
|
2011-11-27 17:45:34 -05:00
|
|
|
map->addNodeWithEvent(p, n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class MakeTreesFromSaplingsABM : public ActiveBlockModifier
|
|
|
|
{
|
|
|
|
private:
|
2013-03-16 19:37:27 -04:00
|
|
|
content_t c_junglesapling;
|
|
|
|
|
2011-11-27 17:45:34 -05:00
|
|
|
public:
|
2013-03-16 19:37:27 -04:00
|
|
|
MakeTreesFromSaplingsABM(ServerEnvironment *env, INodeDefManager *nodemgr) {
|
2013-04-14 03:01:27 -04:00
|
|
|
c_junglesapling = nodemgr->getId("junglesapling");
|
2013-03-16 19:37:27 -04:00
|
|
|
}
|
|
|
|
|
2011-11-27 17:45:34 -05:00
|
|
|
virtual std::set<std::string> getTriggerContents()
|
|
|
|
{
|
|
|
|
std::set<std::string> s;
|
|
|
|
s.insert("sapling");
|
2013-03-16 17:06:11 -04:00
|
|
|
s.insert("junglesapling");
|
2011-11-27 17:45:34 -05:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
virtual float getTriggerInterval()
|
|
|
|
{ return 10.0; }
|
|
|
|
virtual u32 getTriggerChance()
|
|
|
|
{ return 50; }
|
|
|
|
virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n,
|
|
|
|
u32 active_object_count, u32 active_object_count_wider)
|
|
|
|
{
|
|
|
|
INodeDefManager *ndef = env->getGameDef()->ndef();
|
|
|
|
ServerMap *map = &env->getServerMap();
|
|
|
|
|
2013-03-16 19:37:27 -04:00
|
|
|
MapNode n_below = map->getNodeNoEx(p - v3s16(0, 1, 0));
|
2013-04-14 03:01:27 -04:00
|
|
|
if (!((ItemGroupList) ndef->get(n_below).groups)["soil"])
|
2013-03-16 19:37:27 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
bool is_jungle_tree = n.getContent() == c_junglesapling;
|
2013-03-16 17:06:11 -04:00
|
|
|
|
|
|
|
actionstream <<"A " << (is_jungle_tree ? "jungle " : "")
|
|
|
|
<< "sapling grows into a tree at "
|
|
|
|
<< PP(p) << std::endl;
|
2011-11-27 17:45:34 -05:00
|
|
|
|
2012-12-20 12:19:49 -05:00
|
|
|
std::map<v3s16, MapBlock*> modified_blocks;
|
2011-11-27 17:45:34 -05:00
|
|
|
v3s16 tree_p = p;
|
|
|
|
ManualMapVoxelManipulator vmanip(map);
|
|
|
|
v3s16 tree_blockp = getNodeBlockPos(tree_p);
|
|
|
|
vmanip.initialEmerge(tree_blockp - v3s16(1,1,1), tree_blockp + v3s16(1,1,1));
|
2013-03-16 17:06:11 -04:00
|
|
|
|
|
|
|
if (is_jungle_tree) {
|
|
|
|
treegen::make_jungletree(vmanip, tree_p, ndef, myrand());
|
|
|
|
} else {
|
|
|
|
bool is_apple_tree = myrand() % 4 == 0;
|
|
|
|
treegen::make_tree(vmanip, tree_p, is_apple_tree, ndef, myrand());
|
|
|
|
}
|
|
|
|
|
2011-11-27 17:45:34 -05:00
|
|
|
vmanip.blitBackAll(&modified_blocks);
|
|
|
|
|
|
|
|
// update lighting
|
2012-12-20 12:19:49 -05:00
|
|
|
std::map<v3s16, MapBlock*> lighting_modified_blocks;
|
|
|
|
lighting_modified_blocks.insert(modified_blocks.begin(), modified_blocks.end());
|
2011-11-27 17:45:34 -05:00
|
|
|
map->updateLighting(lighting_modified_blocks, modified_blocks);
|
|
|
|
|
|
|
|
// Send a MEET_OTHER event
|
|
|
|
MapEditEvent event;
|
|
|
|
event.type = MEET_OTHER;
|
2012-12-20 12:19:49 -05:00
|
|
|
// event.modified_blocks.insert(modified_blocks.begin(), modified_blocks.end());
|
|
|
|
for(std::map<v3s16, MapBlock*>::iterator
|
|
|
|
i = modified_blocks.begin();
|
|
|
|
i != modified_blocks.end(); ++i)
|
2011-11-27 17:45:34 -05:00
|
|
|
{
|
2012-12-20 12:19:49 -05:00
|
|
|
event.modified_blocks.insert(i->first);
|
2011-11-27 17:45:34 -05:00
|
|
|
}
|
|
|
|
map->dispatchEvent(&event);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-07-27 14:34:30 -04:00
|
|
|
class LiquidFlowABM : public ActiveBlockModifier {
|
|
|
|
private:
|
|
|
|
std::set<std::string> contents;
|
2013-02-24 09:39:07 -05:00
|
|
|
|
2013-07-27 14:34:30 -04:00
|
|
|
public:
|
|
|
|
LiquidFlowABM(ServerEnvironment *env, INodeDefManager *nodemgr) {
|
|
|
|
std::set<content_t> liquids;
|
|
|
|
nodemgr->getIds("group:liquid", liquids);
|
|
|
|
for(std::set<content_t>::const_iterator k = liquids.begin(); k != liquids.end(); k++)
|
|
|
|
contents.insert(nodemgr->get(*k).liquid_alternative_flowing);
|
|
|
|
}
|
|
|
|
virtual std::set<std::string> getTriggerContents() {
|
|
|
|
return contents;
|
|
|
|
}
|
|
|
|
virtual float getTriggerInterval()
|
|
|
|
{ return 10.0; }
|
|
|
|
virtual u32 getTriggerChance()
|
|
|
|
{ return 10; }
|
|
|
|
virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n) {
|
|
|
|
ServerMap *map = &env->getServerMap();
|
|
|
|
if (map->transforming_liquid_size() > 500)
|
|
|
|
return;
|
|
|
|
map->transforming_liquid_add(p);
|
|
|
|
}
|
2013-02-24 09:39:07 -05:00
|
|
|
};
|
|
|
|
|
2013-07-27 14:34:30 -04:00
|
|
|
class LiquidDropABM : public ActiveBlockModifier {
|
|
|
|
private:
|
|
|
|
std::set<std::string> contents;
|
2013-05-31 14:57:59 -04:00
|
|
|
|
2013-07-27 14:34:30 -04:00
|
|
|
public:
|
|
|
|
LiquidDropABM(ServerEnvironment *env, INodeDefManager *nodemgr) {
|
|
|
|
std::set<content_t> liquids;
|
|
|
|
nodemgr->getIds("group:liquid", liquids);
|
|
|
|
for(std::set<content_t>::const_iterator k = liquids.begin(); k != liquids.end(); k++)
|
|
|
|
contents.insert(nodemgr->get(*k).liquid_alternative_source);
|
|
|
|
}
|
|
|
|
virtual std::set<std::string> getTriggerContents()
|
|
|
|
{ return contents; }
|
|
|
|
virtual std::set<std::string> getRequiredNeighbors() {
|
|
|
|
std::set<std::string> neighbors;
|
|
|
|
neighbors.insert("mapgen_air");
|
|
|
|
return neighbors;
|
|
|
|
}
|
|
|
|
virtual float getTriggerInterval()
|
|
|
|
{ return 20.0; }
|
|
|
|
virtual u32 getTriggerChance()
|
|
|
|
{ return 10; }
|
|
|
|
virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n) {
|
|
|
|
ServerMap *map = &env->getServerMap();
|
|
|
|
if (map->transforming_liquid_size() > 500)
|
|
|
|
return;
|
|
|
|
if ( map->getNodeNoEx(p - v3s16(0, 1, 0 )).getContent() != CONTENT_AIR // below
|
|
|
|
&& map->getNodeNoEx(p - v3s16(1, 0, 0 )).getContent() != CONTENT_AIR // right
|
|
|
|
&& map->getNodeNoEx(p - v3s16(-1, 0, 0 )).getContent() != CONTENT_AIR // left
|
|
|
|
&& map->getNodeNoEx(p - v3s16(0, 0, 1 )).getContent() != CONTENT_AIR // back
|
|
|
|
&& map->getNodeNoEx(p - v3s16(0, 0, -1)).getContent() != CONTENT_AIR // front
|
|
|
|
)
|
|
|
|
return;
|
|
|
|
map->transforming_liquid_add(p);
|
|
|
|
}
|
2013-05-31 14:57:59 -04:00
|
|
|
};
|
|
|
|
|
2013-07-27 14:34:30 -04:00
|
|
|
class LiquidFreeze : public ActiveBlockModifier {
|
|
|
|
public:
|
|
|
|
LiquidFreeze(ServerEnvironment *env, INodeDefManager *nodemgr) { }
|
|
|
|
virtual std::set<std::string> getTriggerContents() {
|
|
|
|
std::set<std::string> s;
|
|
|
|
s.insert("group:freezes");
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
virtual std::set<std::string> getRequiredNeighbors() {
|
|
|
|
std::set<std::string> s;
|
|
|
|
s.insert("mapgen_air");
|
|
|
|
s.insert("group:melts");
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
virtual float getTriggerInterval()
|
|
|
|
{ return 10.0; }
|
|
|
|
virtual u32 getTriggerChance()
|
|
|
|
{ return 20; }
|
|
|
|
virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n) {
|
|
|
|
ServerMap *map = &env->getServerMap();
|
|
|
|
INodeDefManager *ndef = env->getGameDef()->ndef();
|
|
|
|
|
2013-09-16 22:52:24 -04:00
|
|
|
float heat = map->updateBlockHeat(env, p);
|
2013-07-27 14:34:30 -04:00
|
|
|
//heater = rare
|
2013-08-04 15:07:30 -04:00
|
|
|
content_t c = map->getNodeNoEx(p - v3s16(0, -1, 0 )).getContent(); // top
|
|
|
|
//more chance to freeze if air at top
|
|
|
|
if (heat <= -1 && (heat <= -50 || (myrand_range(-50, heat) <= (c == CONTENT_AIR ? -10 : -40)))) {
|
2013-07-27 14:34:30 -04:00
|
|
|
content_t c_self = n.getContent();
|
|
|
|
// making freeze not annoying, do not freeze random blocks in center of ocean
|
|
|
|
// todo: any block not water (dont freeze _source near _flowing)
|
|
|
|
bool allow = heat < -40;
|
|
|
|
// todo: make for(...)
|
|
|
|
if (!allow) {
|
|
|
|
c = map->getNodeNoEx(p - v3s16(0, 1, 0 )).getContent(); // below
|
|
|
|
if (c == CONTENT_AIR || c == CONTENT_IGNORE)
|
|
|
|
return; // do not freeze when falling
|
|
|
|
if (c != c_self && c != CONTENT_IGNORE) allow = 1;
|
|
|
|
if (!allow) {
|
|
|
|
c = map->getNodeNoEx(p - v3s16(1, 0, 0 )).getContent(); // right
|
|
|
|
if (c != c_self && c != CONTENT_IGNORE) allow = 1;
|
|
|
|
if (!allow) {
|
|
|
|
c = map->getNodeNoEx(p - v3s16(-1, 0, 0 )).getContent(); // left
|
|
|
|
if (c != c_self && c != CONTENT_IGNORE) allow = 1;
|
|
|
|
if (!allow) {
|
|
|
|
c = map->getNodeNoEx(p - v3s16(0, 0, 1 )).getContent(); // back
|
|
|
|
if (c != c_self && c != CONTENT_IGNORE) allow = 1;
|
|
|
|
if (!allow) {
|
|
|
|
c = map->getNodeNoEx(p - v3s16(0, 0, -1)).getContent(); // front
|
|
|
|
if (c != c_self && c != CONTENT_IGNORE) allow = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (allow) {
|
2013-07-28 09:11:59 -04:00
|
|
|
n.freezeMelt(ndef);
|
2013-07-27 14:34:30 -04:00
|
|
|
map->addNodeWithEvent(p, n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class LiquidMeltWeather : public ActiveBlockModifier {
|
|
|
|
public:
|
|
|
|
LiquidMeltWeather(ServerEnvironment *env, INodeDefManager *nodemgr) { }
|
|
|
|
virtual std::set<std::string> getTriggerContents() {
|
|
|
|
std::set<std::string> s;
|
|
|
|
s.insert("group:melts");
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
virtual std::set<std::string> getRequiredNeighbors() {
|
|
|
|
std::set<std::string> s;
|
|
|
|
s.insert("mapgen_air");
|
|
|
|
s.insert("group:freezes");
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
virtual float getTriggerInterval()
|
|
|
|
{ return 10.0; }
|
|
|
|
virtual u32 getTriggerChance()
|
|
|
|
{ return 20; }
|
|
|
|
virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n) {
|
|
|
|
ServerMap *map = &env->getServerMap();
|
|
|
|
INodeDefManager *ndef = env->getGameDef()->ndef();
|
|
|
|
|
2013-09-16 22:52:24 -04:00
|
|
|
float heat = map->updateBlockHeat(env, p);
|
2013-08-04 15:07:30 -04:00
|
|
|
content_t c = map->getNodeNoEx(p - v3s16(0, -1, 0 )).getContent(); // top
|
|
|
|
if (heat >= 1 && (heat >= 40 || ((myrand_range(heat, 40)) >= (c == CONTENT_AIR ? 10 : 20)))) {
|
2013-07-28 09:11:59 -04:00
|
|
|
n.freezeMelt(ndef);
|
2013-07-27 14:34:30 -04:00
|
|
|
map->addNodeWithEvent(p, n);
|
|
|
|
env->getScriptIface()->node_falling_update(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class LiquidMeltHot : public ActiveBlockModifier {
|
|
|
|
public:
|
|
|
|
LiquidMeltHot(ServerEnvironment *env, INodeDefManager *nodemgr) { }
|
|
|
|
virtual std::set<std::string> getTriggerContents() {
|
|
|
|
std::set<std::string> s;
|
|
|
|
s.insert("group:melts");
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
virtual std::set<std::string> getRequiredNeighbors() {
|
|
|
|
std::set<std::string> s;
|
|
|
|
s.insert("group:igniter");
|
|
|
|
s.insert("group:hot");
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
virtual float getTriggerInterval()
|
|
|
|
{ return 2.0; }
|
|
|
|
virtual u32 getTriggerChance()
|
|
|
|
{ return 4; }
|
|
|
|
virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n) {
|
|
|
|
ServerMap *map = &env->getServerMap();
|
|
|
|
INodeDefManager *ndef = env->getGameDef()->ndef();
|
2013-07-28 09:11:59 -04:00
|
|
|
n.freezeMelt(ndef);
|
2013-07-27 14:34:30 -04:00
|
|
|
map->addNodeWithEvent(p, n);
|
|
|
|
env->getScriptIface()->node_falling_update(p);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-07-28 09:11:59 -04:00
|
|
|
/* too buggy, later via liquid flow code
|
2013-07-27 14:34:30 -04:00
|
|
|
class LiquidMeltAround : public LiquidMeltHot {
|
|
|
|
public:
|
|
|
|
LiquidMeltAround(ServerEnvironment *env, INodeDefManager *nodemgr)
|
|
|
|
: LiquidMeltHot(env, nodemgr) { }
|
|
|
|
virtual std::set<std::string> getRequiredNeighbors() {
|
|
|
|
std::set<std::string> s;
|
|
|
|
s.insert("group:melt_around");
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
virtual float getTriggerInterval()
|
|
|
|
{ return 40.0; }
|
|
|
|
virtual u32 getTriggerChance()
|
|
|
|
{ return 60; }
|
|
|
|
};
|
2013-07-28 09:11:59 -04:00
|
|
|
*/
|
2013-07-27 14:34:30 -04:00
|
|
|
|
|
|
|
void add_legacy_abms(ServerEnvironment *env, INodeDefManager *nodedef) {
|
2011-11-27 17:45:34 -05:00
|
|
|
env->addActiveBlockModifier(new GrowGrassABM());
|
|
|
|
env->addActiveBlockModifier(new RemoveGrassABM());
|
2013-03-16 19:37:27 -04:00
|
|
|
env->addActiveBlockModifier(new MakeTreesFromSaplingsABM(env, nodedef));
|
2013-05-31 14:57:59 -04:00
|
|
|
if (g_settings->getBool("liquid_finite")) {
|
2013-02-24 09:39:07 -05:00
|
|
|
env->addActiveBlockModifier(new LiquidFlowABM(env, nodedef));
|
2013-05-31 14:57:59 -04:00
|
|
|
env->addActiveBlockModifier(new LiquidDropABM(env, nodedef));
|
2013-07-27 14:34:30 -04:00
|
|
|
env->addActiveBlockModifier(new LiquidMeltHot(env, nodedef));
|
2013-07-28 09:11:59 -04:00
|
|
|
//env->addActiveBlockModifier(new LiquidMeltAround(env, nodedef));
|
2013-09-16 22:52:24 -04:00
|
|
|
if (env->m_use_weather) {
|
2013-07-27 14:34:30 -04:00
|
|
|
env->addActiveBlockModifier(new LiquidFreeze(env, nodedef));
|
|
|
|
env->addActiveBlockModifier(new LiquidMeltWeather(env, nodedef));
|
|
|
|
}
|
2013-05-31 14:57:59 -04:00
|
|
|
}
|
2011-11-27 17:45:34 -05:00
|
|
|
}
|