Buying from shop when worldserver is down
lingxDEV opened this issue · comments
Currently it's possible to buy from the shop while the worldserver is down.
Using mycred -- this means that the user is charged, but never recieves the item.
Would it be possible to only allow purchases when the worldserver is up?
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
similar/related issue to #76
The best way for this would be to have an additional table and service for this that periodically checks for the data (items) in the table and process them to worldserver, this way in case worldserver is offline for some reason, it won't process it until it gets a response from the world.
Or obviously, the most simple way would be to just return the error and let the user know on the frontend side.
I agree that would be optimal. However, I think an error should be thrown on the frontend for now, as it's not as complex to achieve.