Unlock map for real
This commit is contained in:
parent
7ad0f2bfcc
commit
035cf19514
2 changed files with 9 additions and 1 deletions
|
@ -13,4 +13,7 @@ internal class TeleportController : Controller
|
|||
|
||||
[NetEvent(MessageId.TeleportFinishRequest)]
|
||||
public ResponseMessage OnTeleportFinishRequest() => Response(MessageId.TeleportFinishResponse, new TeleportFinishResponse());
|
||||
|
||||
[NetEvent(MessageId.TeleportDataRequest)]
|
||||
public ResponseMessage OnTeleportDataRequest() => Response(MessageId.TeleportDataResponse, new TeleportDataResponse());
|
||||
}
|
||||
|
|
|
@ -3,7 +3,6 @@ using GameServer.Network;
|
|||
using GameServer.Network.Messages;
|
||||
using GameServer.Settings;
|
||||
using GameServer.Systems.Entity;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
using Protocol;
|
||||
|
||||
|
@ -22,6 +21,12 @@ internal class WorldMapController : Controller
|
|||
//MarkIdList = { 1, 2, 3, 1000, 1001, 1002, 1003, 1004, 1005, 1007, 1008, 1009, 3000, 3002, 3003, 3005, 3010, 3011, 3012, 4020, 4021, 4022, 4023, 5001, 5002, 5003, 5004, 5005, 5006, 5007, 5021, 5022, 5023, 5025, 5026, 5027, 5028, 5029, 5030, 5031, 380000, 380002, 380003, 380004, 380006, 380007, 380015, 301203, 380013, 380014, 301204, 300201, 300202, 300203, 300301, 300302, 300303, 300304, 300306, 300309, 300310, 300311, 300312, 300313, 300401, 300402, 300403, 300404, 300405, 300406, 300407, 300408, 300410, 300413, 300501, 300502, 300506, 300507, 300508, 300509, 300510, 300511, 300601, 300603, 300604, 300605, 300606, 300607, 300608, 300701, 300703, 300704, 300707, 300708, 300711, 300712, 300713, 300901, 300902, 300911, 300912, 300914, 300915, 300918, 301001, 301003, 301004, 301005, 301006, 301007, 301008, 301009, 301010, 301012, 301013, 301014, 301015, 10000, 10001, 10002, 10003, 10005, 10006, 300801, 301201, 300412, 3015, 3016, 3017, 300411 }
|
||||
});
|
||||
|
||||
[NetEvent(MessageId.MapUnlockFieldInfoRequest)]
|
||||
public ResponseMessage OnMapUnlockFieldInfoRequest() => Response(MessageId.MapUnlockFieldInfoResponse, new MapUnlockFieldInfoResponse
|
||||
{
|
||||
FieldId = { Enumerable.Range(1, 12) }
|
||||
});
|
||||
|
||||
[NetEvent(MessageId.MapMarkRequest)]
|
||||
public async Task<ResponseMessage> OnMapMarkRequest(MapMarkRequest request, IOptions<GameplayFeatureSettings> gameplayFeatures, CreatureController creatureController)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue