From 1a538d919ea647c3460f66c3f7a2f410cb6c055e Mon Sep 17 00:00:00 2001 From: LightCat Date: Mon, 26 Nov 2018 17:23:12 +0100 Subject: [PATCH 1/2] commit fix name changer --- src/hooks/GetFriendPersonaName.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/GetFriendPersonaName.cpp b/src/hooks/GetFriendPersonaName.cpp index ad61c2ca..cad906c3 100644 --- a/src/hooks/GetFriendPersonaName.cpp +++ b/src/hooks/GetFriendPersonaName.cpp @@ -132,7 +132,7 @@ DEFINE_HOOKED_METHOD(GetFriendPersonaName, const char *, ISteamFriends *this_, { // Return the name that has changed from the func above - return format(stolen_name, "\x0F").c_str(); + return format(stolen_name, "\u000B").c_str(); } } } From 47112a73c11f5271513f249417e0bcc3afa13245 Mon Sep 17 00:00:00 2001 From: LightCat Date: Mon, 26 Nov 2018 20:14:08 +0000 Subject: [PATCH 2/2] fix kkebab again ok --- src/hooks/GetFriendPersonaName.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/GetFriendPersonaName.cpp b/src/hooks/GetFriendPersonaName.cpp index cad906c3..7e5f8812 100644 --- a/src/hooks/GetFriendPersonaName.cpp +++ b/src/hooks/GetFriendPersonaName.cpp @@ -132,7 +132,7 @@ DEFINE_HOOKED_METHOD(GetFriendPersonaName, const char *, ISteamFriends *this_, { // Return the name that has changed from the func above - return format(stolen_name, "\u000B").c_str(); + return format(stolen_name, "\u200F").c_str(); } } }