mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 15:34:36 +01:00
fix map loading
This commit is contained in:
@@ -476,10 +476,7 @@ namespace EpinelPS.Data
|
|||||||
|
|
||||||
foreach (ZipEntry item in MainZip)
|
foreach (ZipEntry item in MainZip)
|
||||||
{
|
{
|
||||||
if (item.Name.StartsWith("CampaignMap/") ||
|
if (item.Name.StartsWith("FieldMapData_") && item.Name != "FieldMapData_EventMap.mpk")
|
||||||
item.Name.StartsWith("EventMap/") ||
|
|
||||||
item.Name.StartsWith("LostSectorMap/")
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
FieldMapRecord[] x = await LoadZip<FieldMapRecord>(item.Name, progress);
|
FieldMapRecord[] x = await LoadZip<FieldMapRecord>(item.Name, progress);
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
namespace EpinelPS.LobbyServer.SoloraId;
|
namespace EpinelPS.LobbyServer.SoloraId;
|
||||||
|
|
||||||
[PacketPath("/soloraIdmuseum/get/reddotdata")]
|
[PacketPath("/soloraidmuseum/get/reddotdata")]
|
||||||
public class GetBadgeData : LobbyMsgHandler
|
public class GetBadgeData : LobbyMsgHandler
|
||||||
{
|
{
|
||||||
protected override async Task HandleAsync()
|
protected override async Task HandleAsync()
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
namespace EpinelPS.LobbyServer.SoloraId
|
namespace EpinelPS.LobbyServer.SoloraId
|
||||||
{
|
{
|
||||||
[PacketPath("/soloraId/getperiod")]
|
[PacketPath("/soloraid/getperiod")]
|
||||||
public class GetSoloraIdPeriod : LobbyMsgHandler
|
public class GetSoloraidPeriod : LobbyMsgHandler
|
||||||
{
|
{
|
||||||
protected override async Task HandleAsync()
|
protected override async Task HandleAsync()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user