[BUG] File Not Found Exception when pulling the repo clean
Closed this issue · 1 comments
Describe the bug
Internally the repository wants to find ..\darkan-cache\main_file_cache.dat2 (etc) and this appears to be hardcoded. So when you swapped over to DarkanRS/world-server from titandino/darkan-world-server it broke the directory hierarchy. This is because git wants to create the directory as 'world-server' instead of 'darkan-world-server' now.
To Reproduce
Steps to reproduce the behavior:
- git clone everything to ./
- run gradle or launch com.rs.Launcher.Main
Expected behavior
Cache file name should be reflected to match the current expected hierarchy.
Additional context
Perhaps the cache should be included inside the root of this directory, and you can add a git submodule. This will resolve future name changes if any, as per formally how git operates. User can now clone the cache directly with the world source in this set up.
Fixed