From 87ef929ea0f18e1cc96d19516c822770976deda2 Mon Sep 17 00:00:00 2001 From: DodoCooker <4038417+DodoCooker@users.noreply.github.com> Date: Wed, 22 Aug 2018 19:18:25 +0200 Subject: [PATCH] missing event handler for best possible levels (#759) (#760) --- ARKBreedingStats/BreedingPlan.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ARKBreedingStats/BreedingPlan.cs b/ARKBreedingStats/BreedingPlan.cs index 28040cf5..3e8f5b04 100644 --- a/ARKBreedingStats/BreedingPlan.cs +++ b/ARKBreedingStats/BreedingPlan.cs @@ -74,6 +74,7 @@ public void bindEvents() // has to be done after the BreedingPlan-class got the binding pedigreeCreatureBest.CreatureEdit += new PedigreeCreature.CreatureEditEventHandler(EditCreature); pedigreeCreatureWorst.CreatureEdit += new PedigreeCreature.CreatureEditEventHandler(EditCreature); + pedigreeCreatureBestPossibleInSpecies.CreatureEdit += new PedigreeCreature.CreatureEditEventHandler(EditCreature); pedigreeCreatureBest.exportToClipboard += new PedigreeCreature.ExportToClipboardEventHandler(exportToClipboard); pedigreeCreatureWorst.exportToClipboard += new PedigreeCreature.ExportToClipboardEventHandler(exportToClipboard); pedigreeCreatureBestPossibleInSpecies.exportToClipboard += new PedigreeCreature.ExportToClipboardEventHandler(exportToClipboard);