This commit is contained in:
aozhiwei 2023-02-14 15:40:22 +08:00
parent 6f0fee72f6
commit ff12a25ee0
2 changed files with 3 additions and 3 deletions

View File

@ -252,7 +252,7 @@ void Skill::InitPassiveSkill()
switch (meta->GetMagicId()) { switch (meta->GetMagicId()) {
case MAGIC_30101_XL: case MAGIC_30101_XL:
{ {
ProcSJXY(); Proc30101XL();
} }
break; break;
case MAGIC_30201: case MAGIC_30201:
@ -307,7 +307,7 @@ void Skill::InitPassiveSkill()
} }
} }
void Skill::ProcSJXY() void Skill::Proc30101XL()
{ {
int shot_times = 0; int shot_times = 0;
std::map<int, long long> hited_objs; std::map<int, long long> hited_objs;

View File

@ -50,7 +50,7 @@ private:
void NotifySkillState(); void NotifySkillState();
void ProcSJXY(); void Proc30101XL();
void ProcSSJS(); void ProcSSJS();
void ProcJSHX(); void ProcJSHX();
void ProcSWZB(); void ProcSWZB();