From 9e161d99cff071392ee7269bb06cecaf6e17b79d Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Tue, 4 Oct 2022 18:20:14 -0700 Subject: [PATCH] fix infinite hp on proxy server --- src/ProxyCommands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProxyCommands.cc b/src/ProxyCommands.cc index 4681539e..977f2a14 100644 --- a/src/ProxyCommands.cc +++ b/src/ProxyCommands.cc @@ -1235,7 +1235,7 @@ static HandlerResult C_6x(shared_ptr s, } if (!data.empty()) { - if (data[0] == 0x2F || data[0] == 0x4C) { + if (data[0] == 0x2F || data[0] == 0x4B || data[0] == 0x4C) { if (session.infinite_hp) { vector subs; for (size_t amount = 1020; amount > 0;) {