mt-mods / technic

Technic mod for Minetest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error messages when used with Ethereal

alerikaisattera opened this issue · comments

When this mod is installed together with Ethereal, multiples error messages are displayed on loading. This does not affect gameplay.

Sample message: ERROR[Main]: generateImage(): Could not load image "redwood_wood.png" while building texture; Creating a dummy image
commented

What mod versions are you using for Ethereal and Technic? From ContentDB, from Git or something else?

Reason is probably outdated Technic mod. Latest in ContentDB should be already using new Ethereal texture names.

Reason why I'm asking is because Technic CNC registers nodes for Ethereal nodes https://github.com/mt-mods/technic/blob/master/technic_cnc/materials/ethereal.lua
And one of those nodes is ethereal:redwood_wood which uses redwood_wood.png

technic_cnc.register_all(
"ethereal:redwood_wood",
{snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1},
{"ethereal_redwood_wood.png"},
S("Redwood")
)

It used redwood_wood.png before which is texture name in older Ethereal versions, Technic mod updated to use new texture names here:
dc79537

commented

Closing this as it does not seem to be a problem with current version of Technic mod.