Skip to content

Commit fcd94ff

Browse files
committed
Remove defunct client tag vanity feature
1 parent c8316a4 commit fcd94ff

3 files changed

Lines changed: 11 additions & 39 deletions

File tree

Radegast/Core/RadegastInstance.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,6 @@ private void InitializeClient(GridClient client)
304304
client.Self.Movement.UpdateInterval = 250;
305305

306306
RegisterClientEvents(client);
307-
SetClientTag();
308307
}
309308

310309
public string ComputeCacheName(string cacheDir, UUID assetID)
@@ -349,10 +348,6 @@ private void UnregisterClientEvents(GridClient client)
349348
client.Network.LoginProgress -= new EventHandler<LoginProgressEventArgs>(Network_LoginProgress);
350349
}
351350

352-
public void SetClientTag()
353-
{
354-
Client.Settings.CLIENT_IDENTIFICATION_TAG = GlobalSettings["send_rad_client_tag"] ? new UUID("b748af88-58e2-995b-cf26-9486dea8e830") : UUID.Zero;
355-
}
356351
private void GetWorldTimeZone()
357352
{
358353
try

Radegast/GUI/Dialogs/Settings.Designer.cs

Lines changed: 11 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Radegast/GUI/Dialogs/Settings.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,6 @@ public static void InitSettigs(Settings s, bool mono)
111111

112112
if (!s.ContainsKey("rendering_use_vbo")) s["rendering_use_vbo"] = true;
113113

114-
if (!s.ContainsKey("send_rad_client_tag")) s["send_rad_client_tag"] = true;
115-
116114
if (!s.ContainsKey("log_to_file")) s["log_to_file"] = true;
117115

118116
if (!s.ContainsKey("disable_chat_im_log")) s["disable_chat_im_log"] = false;
@@ -299,13 +297,6 @@ public frmSettings(RadegastInstance instance)
299297

300298
txtResolveURITime.Text = s["resolve_uri_time"].AsInteger().ToString();
301299

302-
cbRadegastClientTag.Checked = s["send_rad_client_tag"];
303-
cbRadegastClientTag.CheckedChanged += (sender, e) =>
304-
{
305-
s["send_rad_client_tag"] = cbRadegastClientTag.Checked;
306-
instance.SetClientTag();
307-
};
308-
309300
cbOnInvOffer.SelectedIndex = s["inv_auto_accept_mode"].AsInteger();
310301
cbOnInvOffer.SelectedIndexChanged += (sender, e) =>
311302
{

0 commit comments

Comments
 (0)