more object notes

This commit is contained in:
Martin Michelsen
2025-03-22 12:51:23 -07:00
parent 3e59f9a91e
commit cfea8a2712
3 changed files with 128 additions and 31 deletions
+2 -2
View File
@@ -2551,7 +2551,7 @@ void send_remove_negative_conditions(shared_ptr<Client> c) {
G_AddStatusEffect_6x0C cmd;
cmd.header = {0x0C, sizeof(G_AddStatusEffect_6x0C) >> 2, c->lobby_client_id};
cmd.effect_type = 7; // Healing ring
cmd.level = 0;
cmd.amount = 0;
send_protected_command(c, &cmd, sizeof(cmd), true);
}
@@ -2559,7 +2559,7 @@ void send_remove_negative_conditions(Channel& ch, uint16_t client_id) {
G_AddStatusEffect_6x0C cmd;
cmd.header = {0x0C, sizeof(G_AddStatusEffect_6x0C) >> 2, client_id};
cmd.effect_type = 7; // Healing ring
cmd.level = 0;
cmd.amount = 0;
ch.send(0x60, 0x00, &cmd, sizeof(cmd));
}