summaryrefslogtreecommitdiff
path: root/src/materials.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/materials.h')
-rw-r--r--src/materials.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/materials.h b/src/materials.h
index 4e067fd66..9db33fc63 100644
--- a/src/materials.h
+++ b/src/materials.h
@@ -56,15 +56,16 @@ struct MaterialProperties
// Sword is best for cuttable light stuff.
float cuttability;
// If high, ignites easily
- //float flammability;
+ float flammability;
MaterialProperties():
diggability(DIGGABLE_NOT),
constant_time(0.5),
- weight(1),
- crackiness(1),
- crumbliness(1),
- cuttability(1)
+ weight(0),
+ crackiness(0),
+ crumbliness(0),
+ cuttability(0),
+ flammability(0)
{}
void serialize(std::ostream &os);