修复免疫传参错误问题

This commit is contained in:
milimoe 2026-01-24 04:41:55 +08:00
parent f75699d5ff
commit db0574eb5a
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -1295,7 +1295,7 @@ namespace Milimoe.FunGame.Core.Entity
public bool CheckSkilledImmune(Character character, Character target, Skill skill, Item? item = null) public bool CheckSkilledImmune(Character character, Character target, Skill skill, Item? item = null)
{ {
if (GamingQueue is null) return false; if (GamingQueue is null) return false;
return GamingQueue.CheckSkilledImmune(target, character, skill, item); return GamingQueue.CheckSkilledImmune(character, target, skill, item);
} }
/// <summary> /// <summary>