Winterbay
Active member
I'm a bit concerned about that 'unreachable code' error
I think that is due to this:
Code:
// if we know how to bind a Spaghetti Elemental
if ( have_skill($skill[Bind Spaghetti Elemental]))
use_skill($skill[Bind Spaghetti Elemental]);
return ( my_thrall() == $thrall[Spaghetti Elemental]);
That would need {}-encapsulation since it is two lines. Otherwise the return-statement will be run always and the code after will never be executed. You would've noticed this if you had not already had the Bind Spaghetti Elemental-skill already.