GKC Trait Matching Properties not working

I spoke too quickly. I thought the above Beanshell syntax was working but it wasn’t. The classic expression to pull one type of card from deck xyz is: DeckName=$xyz$&&Type=$Type$. So Beanshell still doesn’t work, but no biggie as I have a very straightforward classic syntax that does.

That Beanshell is incorrect though. You have forgotten to quote your strings

The equivalent of DeckName=$xyz$&&Type=$Type$

is {(DeckName=="$xyz$") && (Type=="$Type$")}

That worked. Thanks for fixing this big. Great stuff.