This is probably more of a bug report than a question, but for me, if I delete a module, it is impossible to create a new module with the same name...
Module Names Not Deleting Properly
163 Views Asked by Incnas At
3
There are 3 best solutions below
1

I've had a lot of issues with Internet Explorer 11, if you're not using Chrome you can try that. It seems like they've done all their testing in Chrome and left the other browsers out there to die.
0

This is definitely the case, as this shows in my localstorage:
"modules": {
"main": "stuff",
"harvester": null,
"harvesters": null,
"harvest": "stuff",
"builder": null,
"factory": null,
"healer": null
}
Where the null values are old deleted modules. Obviously the localstorage module names need to be removed when removed in the UI as well, but it's not happening.
It may be an issue with your
localStorage
, the game developer has answered a similar question regarding saving modules: https://stackoverflow.com/a/27060388/1814415