From 5252e06c2a97899d59db35bcb4231b6652ff4cc8 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 16 Mar 2007 04:17:47 +0000 Subject: [PATCH] fixed amb90 (not working in 0th slot, related to commit 2491) --- amxmodx/debugger.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amxmodx/debugger.h b/amxmodx/debugger.h index c50016fd..4cfeb1bc 100755 --- a/amxmodx/debugger.h +++ b/amxmodx/debugger.h @@ -176,7 +176,7 @@ public: trace_info_t *GetTrace() const { return m_pTrace; } const char *GetFmtCache() { return m_FmtCache.c_str(); } - bool IsNativeFiltering() { return (m_iNatFunc > 0); } + bool IsNativeFiltering() { return (m_iNatFunc > -1); } bool InNativeFilter() { return m_InNativeFilter; } private: AMX *m_pAmx;