Update to v2.9.1

- Fix a bug that the characters have wrong values
This commit is contained in:
Lost-MSth
2022-07-13 23:05:28 +08:00
parent 210ba99606
commit 6801af197f
10 changed files with 60 additions and 71 deletions

View File

@@ -1,10 +1,11 @@
from flask import Blueprint, request
from core.error import ArcError
from core.sql import Connect
from core.user import UserOnline
from core.world import UserMap, get_world_all
from .func import error_return, success_return
from flask import Blueprint, request
from .auth import auth_required
from .func import error_return, success_return
bp = Blueprint('world', __name__, url_prefix='/world')