topaz-next / topaz

💎 A server emulator for Final Fantasy XI.
GNU General Public License v3.0
56 stars 81 forks source link

Fix parameter length check for CLuaBaseEntity::addStatusEffect() #2530

Closed ghost closed 3 years ago

ghost commented 3 years ago

I affirm:

Temporary:

Fixes #2395

CLuaBaseEntity::addStatusEffect() was enforcing 4 parameters, but accepts two different lengths:

  1. If CLuaStatusEffect is passed, allow one parameter
  2. If numeric args passed, require a minimum of four

Move 4 parameter requirement to the else block, and leverage arg.is for single param

zach2good commented 3 years ago

Great catch! :)