|
@@ -29,7 +29,7 @@ namespace ET.Server
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (request.UnitId <= 0 || request.Force < 0 || request.Force > (int)AreaForce.FORCEB || request.X < 0 || request.Y < 0)
|
|
|
+ if (request.UnitId <= 0 || request.Force < 0 || request.Force > (int)AreaForce.FORCEB )
|
|
|
{
|
|
|
Log.Debug($"参数错误...unitId={request.UnitId}, force={request.Force}");
|
|
|
response.Error = ErrorCode.ERR_ParameterError;
|
|
@@ -37,17 +37,17 @@ namespace ET.Server
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- Monster prop = MonsterCategory.Instance.Get(request.UnitId);
|
|
|
+
|
|
|
if (prop == null)
|
|
|
{
|
|
|
Log.Debug($"添加单位出错, 未找到配置...unitId={request.UnitId}, playerId={player.GetId()}");
|
|
|
response.Error = ErrorCode.ERR_ConfigError;
|
|
|
reply();
|
|
|
return;
|
|
|
- }
|
|
|
+ }*/
|
|
|
|
|
|
Struct.MonsterUnit unit = new Struct.MonsterUnit();
|
|
|
- unit.id = prop.Id;
|
|
|
+ unit.id = request.UnitId;
|
|
|
unit.force = request.Force;
|
|
|
if (!string.IsNullOrEmpty(request.Flag))
|
|
|
{
|