sammypanda / MCJE-PlayerQuests-Plugin

Survival-friendly questing by the players for the players!
GNU General Public License v3.0
4 stars 0 forks source link

Fix quest sequence unable to discriminate between which stage an action belongs to #74

Closed sammypanda closed 2 months ago

sammypanda commented 2 months ago

Fix not enough data: connections.next = action_0 doesn't know whether it's in stage_0 or stage_1.

It just assumes it's the action in the stage it exists in. You should be able to clarify. Maybe like connections.next = stage_0.action_0 maybe. The db is already prepared for this ironically already with dedicated stage and action columns.

db (for reference): database

Data bottleneck: ConnectionsData(prev, curr, next) ~ ConnectionsData(null, action_0, action_1). This can't do ConnectionsData(null, stage_0.action_0, stage_1.action_1)