Launch the game again, and you'll have a surprise
It's due to the "compilation" process of Ren'py. It compared the files in the rpa and directly on the disk, but didn't understood that the "game_gui.rpyc" in the rpa was the same than the "game_gui.rpy" directly on the folder. Therefore it complained about the duplicated labels.
But once you'll have up to date rpyc files directly on the folder, it will understand that it have to use the newest of them, and so there isn't conflict anymore.
But for
jimmydatoolip it's something else :
[/code]
The label sloose is defined twice, at
File "game/fight.rpy", line 250 and
File "game/fightdub.rpy", line 238.
The label story6f is defined twice, at
File "game/huntstory.rpy", line 1050 and
File "game/huntstory.rpy", line 1259.
[/code]
At the exception of the first label, that is duplicated in another file, all the labels are defined twice in the same file... It's clearly a problem due to the dev ; and generally not a good news for the future of the game.