From 7be075004f6544f881e96ac108f6b7409f92a732 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Thu, 14 Apr 2016 18:45:21 +1000 Subject: [PATCH] Fix fire not burning leaves. (Thanks thelegend66) --- Blocks/Block.CoreProps.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Blocks/Block.CoreProps.cs b/Blocks/Block.CoreProps.cs index 95d10acab..3a0bd6f56 100644 --- a/Blocks/Block.CoreProps.cs +++ b/Blocks/Block.CoreProps.cs @@ -59,7 +59,7 @@ namespace MCGalaxy { Properties[i].SaveConvertId = Properties[i].ODoorId; } - if (i >= red && i <= white) + if ((i >= red && i <= white) || (i >= lightpink && i <= turquoise) Properties[i].KilledByLava = true; if (i == air || i == shrub || (i >= yellowflower && i <= redmushroom)) { Properties[i].KilledByLava = true; @@ -91,6 +91,7 @@ namespace MCGalaxy { Properties[air_flood_up].SaveConvertId = air; Properties[wood].KilledByLava = true; Properties[trunk].KilledByLava = true; Properties[sponge].KilledByLava = true; Properties[bookcase].KilledByLava = true; + Properties[leaf].KilledByLava = true; SetupDefaultNames(); }