Bug Custom Combat script - casting Get a Good Whiff

I set up a custom combat script to cast Get A Good Whiff skill from the Nosy Nose.

Code:
[ default ]
if match "black panther"
    while hasskill get a good
        skill get a good whiff of this guy
    endwhile
    attack with weapon
endif
if match "black friar"
    skill snokebomb
endif
attack with weapon

On the first time it encounters black panther, it works fine and casts the skill. However, on the second black panther, the hasskill function fails, and it still attempts to cast get a good whiff when that skill is not available. As a result, I get the error shown below:

Code:
[9448] The Black Forest
Encounter: black panther
Round 0: mrtang63 wins initiative!
Round 1: mrtang63 executes a macro!
Round 1: mrtang63 casts GET A GOOD WHIFF OF THIS GUY!
KoLmafia thinks it is round 2 but KoL thinks it is round 1
You're on your own, partner.
Click here to continue in the relay browser.

Am I using my combat macro script code wrong here?

On a side note, this script works perfectly in kol inbuilt combat macros function, so I was confused as to why it does not work the same in Kolmafia.
 
Top