internal mafia regex location

Can anyone point me to where in the code the regex is that mafia uses when doing a gCLI inventory search.

I went rummaging through the source code for a bit, but didn't know where to look so I didn't have much luck. Thanks.
 

jasonharper

Developer
You mean the "inv" command? There's no regex involved, it just looks for what you typed as a substring of the item name.

If you're talking about name matching in general, "fuzzy matching" as it's generally called, that's in ItemFinder.java - but again, there's no regex involved.
 
Top