- Dec 17, 2017
- 7,426
- 9,695
@Maim Lain to expand on this, the documentation for "call" says:Rename your calls in your mod; you can add an "m" to the end or something, just make sure each instance is unique.
If the optional from clause is present, it has the effect of including a label statement with the given name as the statement immediately following the call statement. An explicit label helps to ensure that saved games with return stacks can return to the proper place when loaded on a changed script.
You have this code at 250:
if not _in_replay:
call set_time ("morn") from _call_set_time_41
And this at 343:
if not _in_replay:
call set_time ("morn") from _call_set_time_41
Note that both from clauses define the same label. That's the problem.