Bug - Fixed Outfit saving instead of putting on

Grotfang

Developer
Yesterday I saved an outfit as "save-20111022". KoL accepts this as an outfit name. Today I typed:

Code:
outfit save-20111022

Mafia saved my current outfit as "-20111022". Is this worth solving, or should I just think of better names for my outfits? :rolleyes:
 
Last edited:

slyz

Developer
In OutfitCommand.java, you could change
PHP:
else if ( parameters.startsWith( "save" ) )
to
PHP:
else if ( parameters.startsWith( "save " ) )
?
 
Top