mirror of
https://github.com/TribesNext/t2-scripts.git
synced 2026-07-14 15:54:31 +00:00
Fixing minor variable bug in Clan Creation
%fld is an unknown variable, so every creation of a clan will try and load a clan with ID 0.
This commit is contained in:
parent
ccced15b47
commit
f4f02cdb47
1 changed files with 1 additions and 1 deletions
|
|
@ -530,7 +530,7 @@ function CommunityBrowserInterface::onLine(%this, %line)
|
||||||
Canvas.popDialog(CreateTribeDlg);
|
Canvas.popDialog(CreateTribeDlg);
|
||||||
// for the newly created clan, create a new tab switch us to it
|
// for the newly created clan, create a new tab switch us to it
|
||||||
LaunchTabView.viewTab("BROWSER", TribeAndWarriorBrowserGui, 0);
|
LaunchTabView.viewTab("BROWSER", TribeAndWarriorBrowserGui, 0);
|
||||||
TWBTabView.view(%fld[1], "", "Tribe");
|
TWBTabView.view(%id, "", "Tribe");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue