Samarium
I think it broke modules without autoload on Linux.
It were working on rc5 and it crashes on rc7 version but only for modules without autoload:
rpg.toml
modules = [
'./battle',
'./chat',
'./main',
'./classes',
'./items',
'./skills',
'./mobs',
'./spritesheets',
'@rpgjs/default-gui',
# '@rpgjs/title-screen',
]
I tried:
./chat
# ...
chat
# ...
/chat
Edit: I got it working by:
rpg.toml
'/workspace/rpg/v4/battle',
'/workspace/rpg/v4/chat',
'./main',
'/workspace/rpg/v4/classes',
'./items',
'./skills',
'./mobs',
'./spritesheets',
These with full path are not autoloaded.