Reverted parenthesis, updated update plugin date

(cherry picked from commit b7df2defd31d3ee5eeca13490fd47956f1c06bb4)
This commit is contained in:
ze-dom
2026-07-22 12:43:19 +01:00
committed by Acentech Dev
parent 6d473a4cf6
commit 960664c1c3
2 changed files with 2 additions and 2 deletions

View File

@@ -261,7 +261,7 @@ public class AreaSkillAttackAction
// In this case we just calculate the angle on server side, so that lags // In this case we just calculate the angle on server side, so that lags
// or desynced positions may not have such a big impact // or desynced positions may not have such a big impact
var angle = (float)player.Position.GetAngleDegreeTo(extraTarget.Position); var angle = (float)player.Position.GetAngleDegreeTo(extraTarget.Position);
rotation = (byte)(angle / 360.0f * 256.0f); rotation = (byte)((angle / 360.0f) * 256.0f);
} }
} }

View File

@@ -49,7 +49,7 @@ public class FinishElfMasterTreePlugIn : UpdatePlugInBase
public override bool IsMandatory => true; public override bool IsMandatory => true;
/// <inheritdoc /> /// <inheritdoc />
public override DateTime CreatedAt => new(2026, 7, 17, 16, 0, 0, DateTimeKind.Utc); public override DateTime CreatedAt => new(2026, 7, 22, 16, 0, 0, DateTimeKind.Utc);
/// <inheritdoc /> /// <inheritdoc />
protected override async ValueTask ApplyAsync(IContext context, GameConfiguration gameConfiguration) protected override async ValueTask ApplyAsync(IContext context, GameConfiguration gameConfiguration)