Results 210 comments of wsbrenk

delete from MODULE_CONFIGURATION where config_key='SpecialEvents_ShowLeague'

db update of the HO5 seems to cause the problem. debugger counts 38 entries in the config table before starting the update. at the end there are 32 entries. the...

Now I see that HO5 upgrade is probably not the reason. Even before the update, not 38 entries are loaded from the table, but only 32.

now i found the number 38 in HO3 database.script file in the index of the config table. SET TABLE PUBLIC.MODULE_CONFIGURATION INDEX '1701063 0 38' dumping the rows in the debugger...

it is intentional when your training date is between 21:14 and 22:04 - otherwise, i have to check what was changed in HO7

@masterpatje i can reproduce this - will check that

@masterpatje experience is calculated together with trainings subskill calculation. the trigger is the training date. each played minute has experience effect with the weights of the match type as you...

![image](https://user-images.githubusercontent.com/11821502/176995137-9cb0a0e4-e1fa-4d3f-bf6c-0cf5ea19cdd0.png) HO calculates with higher precision than displayed in the table column. you can check that with sql editor.

HO considers the different match types when calculating the experience: ~~~ public double getExperienceIncrease(int minutes) { double p; var _matchType = this.getMatchTypeExtended(); if (_matchType instanceof MatchType){ p = switch ((MatchType)...