mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-25 14:17:29 -04:00
Fix fire not burning leaves. (Thanks thelegend66)
This commit is contained in:
parent
f481faa966
commit
7be075004f
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user