diff --git a/NHSE.WinForms/Subforms/SysBot/SysBotUI.cs b/NHSE.WinForms/Subforms/SysBot/SysBotUI.cs index dae2313..6dd54ae 100644 --- a/NHSE.WinForms/Subforms/SysBot/SysBotUI.cs +++ b/NHSE.WinForms/Subforms/SysBot/SysBotUI.cs @@ -23,8 +23,11 @@ public SysBotUI(AutoInjector injector, SysBotController c, AutoInjector injector var offset = Bot.GetDefaultOffset(); Injector.SetWriteOffset(offset); - RamOffset.Text = offset.ToString("X8"); - RamOffsetUSB.Text = offset.ToString("X8"); + + if (string.IsNullOrWhiteSpace(RamOffset.Text)) + RamOffset.Text = offset.ToString("X8"); + if (string.IsNullOrWhiteSpace(RamOffsetUSB.Text)) + RamOffsetUSB.Text = offset.ToString("X8"); TB_IP.Text = Bot.IP; TB_Port.Text = Bot.Port;