fix(multiplayer): don't re-add the last item when HOST_ONLY

This commit is contained in:
MingxuanGame
2025-08-07 08:11:26 +00:00
parent ff25e58696
commit bf04ea02d8

View File

@@ -284,6 +284,8 @@ class PlaylistItem(BaseModel):
copy = self.model_copy()
copy.required_mods = list(self.required_mods)
copy.allowed_mods = list(self.allowed_mods)
copy.expired = False
copy.played_at = None
return copy