summaryrefslogtreecommitdiff
path: root/src/mg_decoration.h
diff options
context:
space:
mode:
authorparamat <mat.gregory@virginmedia.com>2015-03-05 01:53:11 +0000
committerparamat <mat.gregory@virginmedia.com>2015-03-06 03:32:15 +0000
commitc7454d4732dee0f7364ccb8e07002df1a037b94d (patch)
treea77e2e84c14304d4aeac4b515da53dd813e55eb3 /src/mg_decoration.h
parentb65c7ab4a43b082fd798eded3ca3c67fb66fad3f (diff)
downloadminetest-c7454d4732dee0f7364ccb8e07002df1a037b94d.tar.gz
minetest-c7454d4732dee0f7364ccb8e07002df1a037b94d.tar.bz2
minetest-c7454d4732dee0f7364ccb8e07002df1a037b94d.zip
Biome API: Enable decorations placed on water
Add schematic decoration force placement flag
Diffstat (limited to 'src/mg_decoration.h')
-rw-r--r--src/mg_decoration.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mg_decoration.h b/src/mg_decoration.h
index ab4a9377b..fd7739b92 100644
--- a/src/mg_decoration.h
+++ b/src/mg_decoration.h
@@ -35,10 +35,11 @@ enum DecorationType {
DECO_LSYSTEM
};
-#define DECO_PLACE_CENTER_X 0x01
-#define DECO_PLACE_CENTER_Y 0x02
-#define DECO_PLACE_CENTER_Z 0x04
-#define DECO_USE_NOISE 0x08
+#define DECO_PLACE_CENTER_X 0x01
+#define DECO_PLACE_CENTER_Y 0x02
+#define DECO_PLACE_CENTER_Z 0x04
+#define DECO_USE_NOISE 0x08
+#define DECO_FORCE_PLACEMENT 0x10
extern FlagDesc flagdesc_deco[];