From 368b0a9e3ebb7e94a91a96955c20d5d67e7d4b1a Mon Sep 17 00:00:00 2001 From: KiritoDv Date: Tue, 22 Jun 2021 14:13:24 +0000 Subject: [PATCH] Changed hp to lives on discordrpc --- src/pc/discord/discordrpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc/discord/discordrpc.cpp b/src/pc/discord/discordrpc.cpp index 9a7f0f1e..f6d248e7 100644 --- a/src/pc/discord/discordrpc.cpp +++ b/src/pc/discord/discordrpc.cpp @@ -240,7 +240,7 @@ void set_health(){ if(lastHealth != gHudDisplay.wedges){ lastHealth = gHudDisplay.wedges; string new_health_icon = "health-"+to_string(lastHealth); - string new_health_text = to_string(lastHealth) + " HP"; + string new_health_text = to_string(gHudDisplay.lives) + " Lives"; discordRichPresence.smallImageKey = sys_strdup(new_health_icon.data()); discordRichPresence.smallImageText = sys_strdup(new_health_text.data()); }