Jaxel
Well-known member
Lets say I have a series of upgrade steps:
Will this do
I would like
Code:
upgradeStep1()
upgrade2000Step1()
upgrade2100Step1()
upgrade2110Step1()
Will this do
upgradeStep1 > upgrade2000Step1 > upgrade2100Step1 > upgrade2110Step1?I would like
upgradeStep1 to be last in the execution. What would be the best way to accomplish this?