help! TypeError when building a mod

Users who are viewing this thread

I was adding https://www.moddb.com/mods/native-scene-replacement-pack/addons/towns-nords-swadia-vaegirs-sarranids to my mod, and I did exactly what the readme told me to, but error like this appeared:

Code:
TypeError: 'str' object is not callable
Traceback (most recent call last):
  File "src/process_global_variables_unused.py", line 3, in <module>
    from process_operations import *
  File "/Users/admin/chronicles/money-and-honour/src/process_operations.py", line 19, in <module>
    from module_scenes import *
  File "/Users/admin/chronicles/money-and-honour/src/module_scenes.py", line 241, in <module>
    [],[], "outer_terrain_steppe"),
TypeError: 'str' object is not callable
 
Code:
File "/Users/admin/chronicles/money-and-honour/src/module_scenes.py", line 241, in <module>
    [],[], "outer_terrain_steppe"),
TypeError: 'str' object is not callable
My guess is you messed up the module_scenes.py file order but it's hard to tell. You should paste a couple lines from module_scenes.py (around line 241).
 
hell... I as a front-end dev find it way tougher to mod... I mess everything up

btw you are probably correct. I'll now try to fix it and respond asap.
 
Back
Top Bottom