change wrong ConditionsCellRenderer to TimedConditionsCellRenderer

This commit is contained in:
OMGeeky
2025-06-23 17:37:13 +02:00
parent 63e381a804
commit f22052525c

View File

@@ -287,7 +287,7 @@ public class ItemEditor extends JSONElementEditor {
hitEffectPane.add(hitSourceConditionsPane, JideBoxLayout.FIX);
String titleHitTargetConditions = "Actor Conditions applied to the target: ";
hitTargetConditionsModel = new TargetTimedConditionsListModel(hitEffect);
ConditionsCellRenderer cellRendererHitTargetConditions = new ConditionsCellRenderer();
CommonEditor.TimedConditionsCellRenderer cellRendererHitTargetConditions = new CommonEditor.TimedConditionsCellRenderer();
BasicLambdaWithArg<Common.TimedActorConditionEffect> selectedSetHitTargetConditions = (value)->selectedHitEffectTargetCondition = value;
BasicLambdaWithReturn<Common.TimedActorConditionEffect> selectedGetHitTargetConditions = ()->selectedHitEffectTargetCondition ;
BasicLambda selectedResetHitTargetConditions = ()->selectedHitEffectTargetCondition = null;