Changed hp to lives on discordrpc

This commit is contained in:
KiritoDv 2021-06-22 14:13:24 +00:00
parent 6fbd54ae60
commit 368b0a9e3e
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}