From 6a4364d404bd1012e862de7b38a4c3a6e061e8d1 Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Fri, 16 Oct 2020 21:41:21 +0100 Subject: [PATCH] Update credits (#1367) --- core/PlayerManager.cpp | 16 ++++++++++------ core/logic/RootConsoleMenu.cpp | 6 +++++- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/core/PlayerManager.cpp b/core/PlayerManager.cpp index 0dca81d5..3be4808b 100644 --- a/core/PlayerManager.cpp +++ b/core/PlayerManager.cpp @@ -1156,14 +1156,18 @@ void PlayerManager::OnClientCommand(edict_t *pEntity) } else if (args.ArgC() > 1 && strcmp(args.Arg(1), "credits") == 0) { - ClientConsolePrint(pEntity, - "SourceMod would not be possible without:"); - ClientConsolePrint(pEntity, + ClientConsolePrint(pEntity, + "SourceMod would not be possible without:"); + ClientConsolePrint(pEntity, " David \"BAILOPAN\" Anderson, Matt \"pRED\" Woodrow"); - ClientConsolePrint(pEntity, + ClientConsolePrint(pEntity, " Scott \"DS\" Ehlert, Fyren"); - ClientConsolePrint(pEntity, + ClientConsolePrint(pEntity, " Nicholas \"psychonic\" Hastings, Asher \"asherkin\" Baker"); + ClientConsolePrint(pEntity, + " Ruben \"Dr!fter\" Gonzalez, Josh \"KyleS\" Allard"); + ClientConsolePrint(pEntity, + " Michael \"Headline\" Flaherty, Jannik \"Peace-Maker\" Hartung"); ClientConsolePrint(pEntity, " Borja \"faluco\" Ferrer, Pavol \"PM OnoTo\" Marko"); ClientConsolePrint(pEntity, @@ -1178,7 +1182,7 @@ void PlayerManager::OnClientCommand(edict_t *pEntity) ClientConsolePrint(pEntity, "To see credits, type \"sm credits\""); ClientConsolePrint(pEntity, - "Visit http://www.sourcemod.net/"); + "Visit https://www.sourcemod.net/"); RETURN_META(MRES_SUPERCEDE); } diff --git a/core/logic/RootConsoleMenu.cpp b/core/logic/RootConsoleMenu.cpp index 52b4ccfe..fb6857bf 100644 --- a/core/logic/RootConsoleMenu.cpp +++ b/core/logic/RootConsoleMenu.cpp @@ -221,11 +221,15 @@ void RootConsoleMenu::OnRootConsoleCommand(const char *cmdname, const ICommandAr ConsolePrint(" Fyren"); ConsolePrint(" Nicholas \"psychonic\" Hastings"); ConsolePrint(" Asher \"asherkin\" Baker"); + ConsolePrint(" Ruben \"Dr!fter\" Gonzalez"); + ConsolePrint(" Josh \"KyleS\" Allard"); + ConsolePrint(" Michael \"Headline\" Flaherty"); + ConsolePrint(" Jannik \"Peace-Maker\" Hartung"); ConsolePrint(" Borja \"faluco\" Ferrer"); ConsolePrint(" Pavol \"PM OnoTo\" Marko"); ConsolePrint(" Special thanks to Liam, ferret, and Mani"); ConsolePrint(" Special thanks to Viper and SteamFriends"); - ConsolePrint(" http://www.sourcemod.net/"); + ConsolePrint(" https://www.sourcemod.net/"); } else if (strcmp(cmdname, "version") == 0) {