Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hi! This tool is really amazing. I'm trying to run it as an editor, and while the Note function seems to work okay, clicking the Typo button on the overlay gives me this error:

```

I'm sorry, but an uncaught exception occurred.

While running game code:

  File "renpy/common/00action_other.rpy", line 578, in __call__

    rv = self.callable(*self.args, **self.kwargs)

  File "game/renedit/renedit/renedit_functions.rpy", line 12, in add_typo

TypeError: can only concatenate str (not "NoneType") to str```

I'm using Ren'Py 8.0.3, so IDK if that would be the reason? Anyway, I can still use the Note function so I'm not too worried, but I thought I'd let you know. Thank you for making this, it's exactly what I needed!

How odd! Sorry for the trouble. I'm actually working on a new update to the tool that should hopefully fix a lot of issues and be easier to use, but for now if you open up renedit_functions and go to line 12, you may be able to fix this by replacing it with this.

editlog.write("\nTypo logged at "+ str(renpy.get_filename_line()) + ":\n" + str(_last_say_what) + "\n\n----------------------------\n")

This will make sure the _last_say_what will be written down as text in the event no one spoke last (usually if you're using something different to display text... but not going to discount it being a Ren'Py 8.0 issue!)

(+1)

Yup, that fixed it! Thanks for the quick response. I won't discount the possibility that I did something wrong in installing it either ... But the main thing is that it's fixed! I'll look forward to the update as well~