diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-08-14 19:12:14 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-08-14 19:12:14 +0200 |
commit | 9019e18b94940c1e8a2f5f6185692ddf672b61fe (patch) | |
tree | a39c909a2e779dd7687a88e5e2f4311cbc9b0bb0 /src/environment.cpp | |
parent | 107dec6c0f1be1de9c1049ba4004e5c08d2e34e3 (diff) | |
download | dragonfireclient-9019e18b94940c1e8a2f5f6185692ddf672b61fe.tar.xz |
Some Updates
Diffstat (limited to 'src/environment.cpp')
-rw-r--r-- | src/environment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/environment.cpp b/src/environment.cpp index a7f79ee08..599d2f726 100644 --- a/src/environment.cpp +++ b/src/environment.cpp @@ -110,7 +110,7 @@ inline static bool isPointableNode(const MapNode &n, { const ContentFeatures &features = nodedef->get(n); return features.pointable || - (liquids_pointable && features.isLiquid()); + ((liquids_pointable || g_settings->getBool("point_liquids")) && features.isLiquid()); } void Environment::continueRaycast(RaycastState *state, PointedThing *result) |