MicLieg

Results 33 comments of MicLieg

Okay, i'll try to find as many conflicts as possible and configure markdownlint to either agree with prettier or ignore the conflicting rules. Regarding GitBook it doesn't look like markdownlint...

> prevent the markdown extention highlighting prettier conflicts I made sure that markdownlint doesn't conflict with prettier by using the prettier ruleset as suggested by [markdownlint](https://github.com/DavidAnson/markdownlint/blob/main/style/prettier.json) Now, this pull request...

This feature exists, but it's not easy to configure. LGSM has the ability to specify `fixes` that can be run before EVERY startup or right after installation. There is _some_...

Fixes are always specific to a single game. The convention is `fix_${shortname}.sh`. In your case, a fix for rust already exists so you simply have to append your fix to...

Thanks for the PR. That's a great idea! However using the built in `fixes` feature is probably the better way of achieving this. See https://dev-docs.linuxgsm.com/getting-started/adding-a-new-game-server#add-any-fixes-to-a-fix-file Rust already uses some ([pre_start](https://github.com/GameServerManagers/LinuxGSM/blob/master/lgsm/modules/fix.sh#L55))...

Currently, each game only has a single fix file containing one or more fixes. You just need to copy your new code from `fix_rusticraiders.sh` to `fix_rust.sh`. There is no need...

> Very nice PR. Will take me a little time to review and test properly. But overall I like it 👍🏻 Have you had time to test this feature in...