Ran into a small annoyance when trying to add some new descriptions to res://files/scripts/characters/descriptions.gd
var descriptions line 126 '"spider abdomen" : ''' is missing a comma at the end. I've created a tiny fix mod, but I was hoping it could be added to bugfix, since it's such a little thing it doesn't really warrant it's own slot in the mod list (and a bugfix patch should always go before other mods, which should help with load order issues for end users too)
The fix:
<RemoveFrom 126 126>
var descriptions = {
# "spider abdomen": ''
}
<AddTo 126>
var descriptions = {
"spider abdomen": '',
}
I briefly scanned through the file and didn't notice any other missing commas, so I hope there aren't many others in the project. This fix is tested and works for me on 1.0d.
I was trying to add a couple of new tail descriptions btw.