Feature casts CHANCE detail (add more info?)

ckb

Minion
Staff member
Looking at a run log, there is a "casts CHANCE" entry.
From FightRequest.java, it looks like this happens when someone somehow uses an unknown skill.

Code:
				int skillNumber = StringUtilities.parseInt( skillId );
				String skill = SkillDatabase.getSkillName( skillNumber );
				if ( skill == null )
				{
					if ( shouldLogAction )
					{
						action.append( "casts CHANCE!" );
					}
				}

Is there a way to add more information to this? Maybe with SkillId?
(I don't fully understand how this works)
 
Top