Thanks again @Merdian!
And @Finnik or for that matter everyone else wanting to use my changes in their fork:
Since you asked me for a PR on Discord, you probably are not aware of the following git-trick I learned while working with other modders on Remnants of the Precursors:
Open the console from your git-application and type:
git remote add <short remote name> <remote URL>
e.g:
git remote add brutal
https://github.com/Xilmi/OpenXcom.gitThis needs only to be done only once.
From then on you can always run:
git fetch brutal
Which should add the options to merge any of my branches in a similar way you can merge with upstream-master.
It's a very convenient way for staying up to date with the forks of several other people without having to ask them for pull-requests.