Rework the overly weird vine growth algorithm
[MineClone/MineClone2.git] / settingtypes.txt
blob9268fb2509f3616bf29cf54603c7851a7841c802
1 # This file contains settings of MineClone 2that can be changed in
2 # minetest.conf
4 # In creative mode, players are able to dig all kind of blocks
5 # instantly, and have access to unlimited resources.
6 # Items are not used up, and blocks do not drop.
7 # Some of the functionality is only available if this setting is present
8 # at startup.
9 # This setting may be removed in later version in favor of
10 # per-player Creative Mode.
11 creative_mode (Creative mode) bool false
13 # Fire spreads and flammable nodes will be ignited by nearby fire.
14 # Spreading fire may cause severe destruction.
15 # Spreading fire blocks will disappear when fire is disabled, but
16 # eternal fire is unaffected.
17 enable_fire (Fire) bool true
19 # Enable flame sound.
20 flame_sound (Flame sound) bool true
22 # If enabled, breaking blocks will cause them to drop as item.
23 # Note that blocks never have drops when in Creative Mode.
24 mcl_doTileDrops (Blocks have drops) bool true
26 # Normally, players drop all their items when they die. Enable this
27 # setting, so players always keep their inventory on death.
28 mcl_keepInventory (Keep inventory on death) bool false
30 # If enabled, chat messages are shown to everyone when a player dies.
31 mcl_showDeathMessages (Show death messages) bool true
33 # If enabled, only peaceful mobs will appear naturally. This does not
34 # affect monster spawners.
35 # This setting is only read at startup.
36 only_peaceful_mobs (Spawn only peaceful mobs) bool false
38 # If enabled, players respawn at the bed they last lay on instead of normal
39 # spawn.
40 # This setting is only read at startup.
41 enable_bed_respawn (Respawn at bed) bool true
43 # If enabled, the night can be skipped if all players are in bed.
44 # This setting is only read at startup.
45 enable_bed_night_skip (Skip night when sleeping) bool true
47 # If enabled, the recipe book will only show recipes which require one
48 # item which you have already discovered.
49 # If disabled, the recipe book shows all crafting recipes.
50 # This setting is experimental and may be changed in later versions.
51 # Feedback is appreciated.
52 craftguide_progressive_mode (EXPERIMENTAL: Enable recipe book progressive mode) bool false
54 # If enabled, the “flat” map generator generates a “classic” superflat map:
55 # Completely flat, 1 layer of grass blocks on top of 2 layers of dirt on
56 # top of a final layer of bedrock.
57 # Note if this is enabled, the setting “mgflat_flags” is ignored. To
58 # customize the “flat” map generator, you must disable this setting.
59 # Warning: Disabling this setting is currently EXPERIMENTAL! The generated map
60 # may not be that pretty.
61 mcl_superflat_classic (Classic superflat map generation) bool true
63 # Which edition of Minecraft to imitate. This currently only affects two map
64 # generation aspects.
65 # This setting might be removed in a later version.
66 # Available options:
68 # pc_edition: PC Edition (later known as “Java Edition”).
69 #     There are no fallen tree trunks.
70 #     Jungle bushes have oak leaves.
72 # pocket_edition: Pocket Edition
73 #     There are simple fallen tree trunks with mushrooms.
74 #     Jungle bushes have jungle leaves.
75 mcl_imitation_mode (Imitated Minecraft edition) enum pc_edition pc_edition,pocket_edition