Hi all.
My custom fire block, when substituting the vanilla block, does not spread the fire or burn anything. It does, however, have correct animations, and does work when registered as its own block.
I'm attemtping to replace the vanilla block "minecraft:fire" with the addSubstitutionAlias with my own custom BlockFire class.
Please note, I did try my BlockFire class while registered on its own (Using GameRegistry), and it works perfectly. The issue appears to only happen when substituting the original.
Here is some snippets of my code:
Here is my registry lines of code:
http://pastebin.com/UHdLfb70
Here is my custom BlockFire class (fireTweak):
http://pastebin.com/ZEhjt61n
-- NOTES
I have put some breakpoints in the onUpdate method, so I do know it is being called correctly. It doesn't, however, get past "scheduleBlockUpdate" (Line 159 on pastebin) - The fireTweak also has working animations ETC.
I've been stuck on this for about a week, and is the last thing my mod is missing. Every bit of help will be much appreciated.