Skip to content

Commit

Permalink
raise filter rate limit from 2 to 3
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Jun 16, 2017
1 parent 1453253 commit bae2ca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FilterManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class LunaFilterManager : public Luna<FilterManager>
static int SetMaxFilterRate(T* p, lua_State* L) {
float mfr = FArg(1);
auto loot = p->m_pPlayerState[0];
CLAMP(mfr, loot->wtFFF, 2.f);
CLAMP(mfr, loot->wtFFF, 3.f);
p->MaxFilterRate = mfr;
return 1;
}
Expand Down

0 comments on commit bae2ca8

Please sign in to comment.