Skip to content

Commit 928aa9f

Browse files
committed
Replace remaining uses of "mtasa.com" with "multitheftauto.com" to reduce redundant redirects
1 parent bc45e8a commit 928aa9f

25 files changed

+50
-50
lines changed

.github/CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Please refer to the [forum rules](https://forum.mtasa.com/topic/12275-forum-rules/).
1+
Please refer to the [forum rules](https://forum.multitheftauto.com/topic/12275-forum-rules/).

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ body:
5959
description: |
6060
Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
6161
62-
**Warning!** Do not post any personal information or sensitive logs here. You are responsible for redacting any personal information from the logs. If you need to post sensitive logs, you can use our [private log uploader](https://upload.mtasa.com/) which will only allow MTA staff to access the file, just paste the link to it here.
62+
**Warning!** Do not post any personal information or sensitive logs here. You are responsible for redacting any personal information from the logs. If you need to post sensitive logs, you can use our [private log uploader](https://upload.multitheftauto.com/) which will only allow MTA staff to access the file, just paste the link to it here.
6363
render: shell
6464
- type: checkboxes
6565
id: terms

.github/SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Please submit your security vulnerabilities and cheats to our [private bugtracke
77

88
Please do not submit vulnerabilities and cheats publicly, on GitHub or anywhere else.
99

10-
[private bugtracker]: https://forum.mtasa.com/forum/156-private-bugs/
10+
[private bugtracker]: https://forum.multitheftauto.com/forum/156-private-bugs/
1111

1212
## Bug Bounty
1313

@@ -16,4 +16,4 @@ We also run a bug bounty programme. Please read
1616

1717
Payment is by PayPal only -- please include your PayPal email when posting on the [private bugtracker].
1818

19-
[bounty]: https://forum.mtasa.com/topic/66858-bounty-for-finding-security-flaws-and-working-cheats-in-mta/
19+
[bounty]: https://forum.multitheftauto.com/topic/66858-bounty-for-finding-security-flaws-and-working-cheats-in-mta/

Client/core/CNewsBrowser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ bool CNewsBrowser::OnOKButtonClick(CGUIElement* pElement)
387387
bool CNewsBrowser::OnNewsLinkButtonClick(CGUIElement* pElement)
388388
{
389389
// Visit the website
390-
ShellExecuteNonBlocking("open", "https://mtasa.com/news");
390+
ShellExecuteNonBlocking("open", "https://multitheftauto.com/news");
391391

392392
// Close the window
393393
m_pWindow->SetVisible(false);

Client/core/CVersionUpdater.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1912,7 +1912,7 @@ void CVersionUpdater::_DialogUpdateQueryError()
19121912
// Display message
19131913
GetQuestionBox().Reset();
19141914
GetQuestionBox().SetTitle(_("UPDATE CHECK"));
1915-
GetQuestionBox().SetMessage(_("An update is currently not available.\n\nPlease check www.mtasa.com"));
1915+
GetQuestionBox().SetMessage(_("An update is currently not available.\n\nPlease check www.multitheftauto.com"));
19161916
GetQuestionBox().SetButton(0, _("OK"));
19171917
GetQuestionBox().Show();
19181918
_PollAnyButton();

Client/mods/deathmatch/logic/CClientSoundManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ CClientSoundManager::CClientSoundManager(CClientManager* pClientManager)
4444
BASS_SetConfig(BASS_CONFIG_NET_PREBUF, 0);
4545
BASS_SetConfig(BASS_CONFIG_NET_PLAYLIST, 1); // Allow playlists
4646

47-
m_strUserAgent = SString("MTA:SA Server %s - See http://mtasa.com/agent/", g_pNet->GetConnectedServer(true));
47+
m_strUserAgent = SString("MTA:SA Server %s - See http://multitheftauto.com/agent/", g_pNet->GetConnectedServer(true));
4848
BASS_SetConfigPtr(BASS_CONFIG_NET_AGENT, (void*)*m_strUserAgent);
4949

5050
UpdateVolume();

Client/mods/deathmatch/logic/lua/CLuaMain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ bool CLuaMain::LoadScriptFromBuffer(const char* cpInBuffer, unsigned int uiInSiz
220220
uint uiSize;
221221
if (!g_pNet->DeobfuscateScript(cpInBuffer, uiInSize, &cpBuffer, &uiSize, strNiceFilename))
222222
{
223-
SString strMessage("%s is invalid. Please re-compile at http://luac.mtasa.com/", *strNiceFilename);
223+
SString strMessage("%s is invalid. Please re-compile at http://luac.multitheftauto.com/", *strNiceFilename);
224224
g_pClientGame->GetScriptDebugging()->LogError(m_luaVM, "Loading script failed: %s", *strMessage);
225225
g_pClientGame->TellServerSomethingImportant(1003, SString("CLIENT SCRIPT ERROR: %s", *strMessage));
226226
return false;

Client/mods/deathmatch/logic/luadefs/CLuaResourceDefs.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ int CLuaResourceDefs::LoadString(lua_State* luaVM)
432432
uint uiSize;
433433
if (!g_pNet->DeobfuscateScript(cpInBuffer, uiInSize, &cpBuffer, &uiSize, m_pResourceManager->GetResourceName(luaVM) + "/loadstring"))
434434
{
435-
SString strMessage("argument 1 is invalid. Please re-compile at http://luac.mtasa.com/", 0);
435+
SString strMessage("argument 1 is invalid. Please re-compile at http://luac.multitheftauto.com/", 0);
436436
argStream.SetCustomError(strMessage);
437437
cpBuffer = NULL;
438438
g_pClientGame->TellServerSomethingImportant(1004, argStream.GetFullErrorMessage(), 3);
@@ -512,7 +512,7 @@ int CLuaResourceDefs::Load(lua_State* luaVM)
512512
uint uiSize;
513513
if (!g_pNet->DeobfuscateScript(cpInBuffer, uiInSize, &cpBuffer, &uiSize, m_pResourceManager->GetResourceName(luaVM) + "/load"))
514514
{
515-
SString strMessage("argument 2 is invalid. Please re-compile at http://luac.mtasa.com/", 0);
515+
SString strMessage("argument 2 is invalid. Please re-compile at http://luac.multitheftauto.com/", 0);
516516
argStream.SetCustomError(strMessage);
517517
cpBuffer = NULL;
518518
g_pClientGame->TellServerSomethingImportant(1005, argStream.GetFullErrorMessage(), 3);

Server/mods/deathmatch/Config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@
120120
#define MAX_GARAGES 50
121121

122122
// MTA master server query URL (Inputs: game port, ase port, http port, version, extra, serverip)
123-
#define QUERY_URL_MTA_MASTER_SERVER "https://master.mtasa.com/ase/add.php?g=%GAME%&a=%ASE%&h=%HTTP%&v=%VER%&x=%EXTRA%&ip=%IP%"
123+
#define QUERY_URL_MTA_MASTER_SERVER "https://master.multitheftauto.com/ase/add.php?g=%GAME%&a=%ASE%&h=%HTTP%&v=%VER%&x=%EXTRA%&ip=%IP%"
124124

125125
// MTA port tester URL
126-
#define PORT_TESTER_URL "https://nightly.mtasa.com/ports/"
126+
#define PORT_TESTER_URL "https://nightly.multitheftauto.com/ports/"
127127

128128
// MTA minclientversion auto update and others
129129
#define HQCOMMS_URL "https://updatesa.multitheftauto.com/sa/server/hqcomms/"

Server/mods/deathmatch/editor.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
Version numbers are described here: http://wiki.multitheftauto.com/wiki/GetPlayerVersion
101101
and look like this: 1.1.0-9.03100.0
102102
Note that this setting only determines if the client should be prompted to update. The actual
103-
build number they receive will be the highest available. See: http://nightly.mtasa.com/ver -->
103+
build number they receive will be the highest available. See: http://nightly.multitheftauto.com/ver -->
104104
<minclientversion></minclientversion>
105105

106106
<!-- This parameter specifies if/when the <minclientversion> setting is automatically updated.
@@ -112,7 +112,7 @@
112112
<!-- Recommended client version. When connecting, if clients have a lower version, they will be given
113113
the option to download an update. If left blank, this setting is disabled.
114114
Note that this setting only determines if the client should be prompted to update. The actual
115-
build number they receive will be the highest available. See: http://nightly.mtasa.com/ver -->
115+
build number they receive will be the highest available. See: http://nightly.multitheftauto.com/ver -->
116116
<recommendedclientversion></recommendedclientversion>
117117

118118
<!-- This parameter can be used to make the server report to Game-Monitor master servers, allowing it to
@@ -261,15 +261,15 @@
261261
<!-- This parameter lists the ACL groups that are protected by serial authorization.
262262
Login attempts to a protected account from a second serial are blocked until the serial is manually authorized via
263263
the authserial command.
264-
For more info see: https://mtasa.com/authserial
264+
For more info see: https://multitheftauto.com/authserial
265265
Note: This is security critical feature and disabling auth_serial_groups can affect visibility in the master server list.
266266
Values: Comma separated list of ACL groups. Default - Admin -->
267267
<auth_serial_groups></auth_serial_groups>
268268

269269
<!-- This parameter specifies if the authorized serial login checks should also apply to the http interface.
270270
Protected account login attempts to the http interface will only succeed if the IP address matches one
271271
recently used by the account holder in-game
272-
For more info see: https://mtasa.com/authserialhttp
272+
For more info see: https://multitheftauto.com/authserialhttp
273273
Note: This is security critical feature and disabling auth_serial_http can affect visibility in the master server list.
274274
Values: 0 - Off, 1 - Enabled. Default - 1 -->
275275
<auth_serial_http>0</auth_serial_http>

0 commit comments

Comments
 (0)