|
|
@@ -210,6 +210,7 @@ abstract class MapWatch extends PlugController {
|
|
|
Future<void> updateEvent(EventOnMap old, EventInfo newOne) async {
|
|
|
final newUserList = <PlayerOnMap>[];
|
|
|
|
|
|
+ final ext = await getEventInfoExt(old.id);
|
|
|
for (final nUser in newOne.players) {
|
|
|
late PlayerOnMap user;
|
|
|
final oUser = old.getUserById(nUser.id);
|
|
|
@@ -222,6 +223,7 @@ abstract class MapWatch extends PlugController {
|
|
|
newUserList.add(user);
|
|
|
}
|
|
|
old.userList = newUserList;
|
|
|
+ old.ext = ext;
|
|
|
}
|
|
|
|
|
|
Future<void> playerUpdateMap(PlayerOnMap info) async {
|