mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
AoE rewrite and bug fixes
Rewrote aoe checks for cone and line aoes and added minimum distance values Added height checks for commands Fixed combo effects repeating for every target hit by AoE attacks Fixed teleport sometimes not raising (I think) Fixed gear checks in some command scripts
This commit is contained in:
@@ -127,7 +127,7 @@ namespace FFXIVClassic_Map_Server.actors.chara.ai
|
||||
return AddStatusEffect(se, owner);
|
||||
}
|
||||
|
||||
public bool AddStatusEffect(uint id, byte tier, UInt64 magnitude)
|
||||
public bool AddStatusEffect(uint id, byte tier, double magnitude)
|
||||
{
|
||||
var se = Server.GetWorldManager().GetStatusEffect(id);
|
||||
|
||||
@@ -137,7 +137,7 @@ namespace FFXIVClassic_Map_Server.actors.chara.ai
|
||||
return AddStatusEffect(se, owner);
|
||||
}
|
||||
|
||||
public bool AddStatusEffect(uint id, byte tier, UInt64 magnitude, uint duration, int tickMs = 3000)
|
||||
public bool AddStatusEffect(uint id, byte tier, double magnitude, uint duration, int tickMs = 3000)
|
||||
{
|
||||
var se = Server.GetWorldManager().GetStatusEffect(id);
|
||||
if (se != null)
|
||||
|
Reference in New Issue
Block a user