Skip to content
Snippets Groups Projects
Commit 157731ee authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'removeGlobalGoTo' into 'pregmod-master'

Remove global goTo

See merge request pregmodfan/fc-pregmod!8861
parents 91d259b4 a2c4f76c
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,6 @@ App.EndWeek.resetGlobals = function() {
V.buyer = "";
V.desc = "";
V.event = "";
V.goto = "";
V.malefactor = "";
// Done with zeroing out, what should be for the most part Temps
};
:: random event roll
<<set $goto = $events.random()>>
<<if $goto.startsWith("JSRE")>>
<<run App.Events.setGlobalEventForPassageTransition($goto)>>
<<set $goto = "JS Random Event">>
<<set _goto = $events.random()>>
<<if _goto.startsWith("JSRE")>>
<<run App.Events.setGlobalEventForPassageTransition(_goto)>>
<<set _goto = "JS Random Event">>
<</if>>
<<goto $goto>>
<<goto _goto>>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment