mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2026-03-05 22:20:26 +00:00
修复免疫传参错误问题
This commit is contained in:
parent
f75699d5ff
commit
db0574eb5a
@ -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>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user