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:
Heat Killer 2015-02-08 13:17:18 -08:00
parent ccced15b47
commit f4f02cdb47

View file

@ -530,7 +530,7 @@ function CommunityBrowserInterface::onLine(%this, %line)
Canvas.popDialog(CreateTribeDlg);
// for the newly created clan, create a new tab switch us to it
LaunchTabView.viewTab("BROWSER", TribeAndWarriorBrowserGui, 0);
TWBTabView.view(%fld[1], "", "Tribe");
TWBTabView.view(%id, "", "Tribe");
}
}