more backtrack fixes
This commit is contained in:
parent
511bddc6ef
commit
79ebbef5cd
@ -306,7 +306,7 @@ float getLatency()
|
||||
|
||||
int getTicks()
|
||||
{
|
||||
return max(min(int(*latency / 200.0f * 13.0f) + 12, 65), 12);
|
||||
return max(min(int(*latency / 200.0f * 13.0f), 65), 12);
|
||||
}
|
||||
|
||||
int getTicks2()
|
||||
|
@ -71,7 +71,7 @@ DEFINE_HOOKED_METHOD(DispatchUserMessage, bool, void *this_, int type,
|
||||
}
|
||||
if (chat_filter_enable && data[0] != LOCAL_E->m_IDX)
|
||||
{
|
||||
if (sizeof(*chat_filter) > 5)
|
||||
if (sizeof(*chat_filter) < 10)
|
||||
{
|
||||
std::string tmp = {};
|
||||
std::string tmp2 = {};
|
||||
|
Reference in New Issue
Block a user