You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attaching a DM Entry and choosing the advancement option adds exactly one level to the attached character, regardless if the levels fields contains 0 or a number greater than 1.
Expected Behavior
It is expected that the character advances the same number of levels as the input number.
Actual Behavior
The character advances exactly one level regardless of the level field value.
Steps to Reproduce
Create a character and note the character's level.
Create a DM Entry with a number greater than 1 or a value of 0.
Attach a character.
Choose the advancement option.
Go to the characters tab, find the character attached to the last DM Entry. Notice that the character's level was incremented by 1.
Context
Users would expect the same number of levels to be added to their characters as the number they registered through the DM Entry.
Possible Fix
Add the same number of levels as the DM Entry value in the EntryController.php file. A possible fix would be to remove instances of the line $entryData['levels'] = 1; in that file.
Other
It would maybe be important to check why the $entryData values are being modified in the EntryController.php file. Would this cause any issues if the user were to edit the DM Entry?
Description
Additional Notes
The text was updated successfully, but these errors were encountered:
its implemented this way on purpose because its, sort of a rule. Typically its 1 level per entry but I suppose there might be edge cases where you could gain more than 1 level. Honestly i'd have to consult the Adventurers League rules more closely
Description
Attaching a DM Entry and choosing the advancement option adds exactly one level to the attached character, regardless if the levels fields contains 0 or a number greater than 1.
Expected Behavior
It is expected that the character advances the same number of levels as the input number.
Actual Behavior
The character advances exactly one level regardless of the level field value.
Steps to Reproduce
Context
Users would expect the same number of levels to be added to their characters as the number they registered through the DM Entry.
Possible Fix
Add the same number of levels as the DM Entry value in the
EntryController.php
file. A possible fix would be to remove instances of the line$entryData['levels'] = 1;
in that file.Other
It would maybe be important to check why the $entryData values are being modified in the
EntryController.php
file. Would this cause any issues if the user were to edit the DM Entry?Description
Additional Notes
The text was updated successfully, but these errors were encountered: