Well, I checked the game a bit by decompressing it and running it in godot.
I think I found an way to disable the censor and also not to make the game crash. I did that by changing the censor index from
1 to
0. This is not the best option, because it won't remove it, but at least it will move it under the animation, which is not so bad I think.
The censor function can be found in the level script.
This means that the only thing you need to do is to find the line with this index and change it.
I mainly use HxD for this, as there is a lot of text and notepad++ can crash because of this, but you can still try to use it.
If you want to use Notepadd++:
But if you want to use HxD here is where you can find it:
However, you need to know that there are 2 the same functions in this project.
So make sure you change the index in the function that does not have:
extends Node2D
var Cens="Censura"
above them.
I hope that helps.