Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Application/OasisBot/Views/SplashScreen.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Application/OasisBot/Views/SplashScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public SplashScreen(Main mainForm)

_mainForm = mainForm;

logoLabel.Text = "OASISBOT";
labelVersion.Text = Program.AssemblyVersion;
referenceDataLoader.RunWorkerCompleted += ReferenceDataLoaderCompleted;
}
Expand Down
2 changes: 1 addition & 1 deletion Library/RSBot.Core/Components/ClientManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ private static void ClientProcess_Exited(object sender, EventArgs e)
/// <param name="divisionIndex"></param>
private static void PrepareTempConfigFile(uint processId, int divisionIndex)
{
var tmpConfigFile = $"RSBot_{processId}.tmp";
var tmpConfigFile = $"OasisBot_{processId}.tmp";

var division = Game.ReferenceManager.DivisionInfo.Divisions[divisionIndex];
var gatewayPort = Game.ReferenceManager.GatewayInfo.Port;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void Invoke(Packet packet)

EventManager.FireEvent("OnLoadCharacter");

ClientManager.SetTitle($"{character.Name} - RSBot");
ClientManager.SetTitle($"{character.Name} - OasisBot");

if (!Game.Clientless)
return;
Expand Down
2 changes: 1 addition & 1 deletion Library/RSBot.Loader.Library/Library.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ void LoadConfig()
if (!tempFolder) return;

stringstream payloadPath;
payloadPath << tempFolder << "\\RSBot_" << GetCurrentProcessId() << ".tmp";
payloadPath << tempFolder << "\\OasisBot_" << GetCurrentProcessId() << ".tmp";

for (int i = 0; i < 30; i++) {
ifstream stream(payloadPath.str(), ifstream::binary);
Expand Down
Loading