From f4f02cdb47da68550629e88dd453c8f269b58590 Mon Sep 17 00:00:00 2001 From: Heat Killer Date: Sun, 8 Feb 2015 13:17:18 -0800 Subject: [PATCH] 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. --- t2csri/community/browser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t2csri/community/browser.cs b/t2csri/community/browser.cs index 9ebe5bf..6e1c2a3 100644 --- a/t2csri/community/browser.cs +++ b/t2csri/community/browser.cs @@ -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"); } }