Code cleanup

This commit is contained in:
Liza 2025-01-25 20:00:27 +01:00
parent b2c0934f07
commit e1b146ee1e
Signed by: liza
GPG Key ID: 2C41B84815CF6445
2 changed files with 1 additions and 2 deletions

View File

@ -94,7 +94,6 @@ internal sealed unsafe class InterruptHandler : IDisposable
[FieldOffset(6)] public ushort Value;
public byte AttackType => (byte)(Param1 & 0xF);
public uint Damage => Mult == 0 ? Value : Value + ((uint)ushort.MaxValue + 1) * Mult;
public override string ToString()
{

View File

@ -19,7 +19,7 @@ using Quest = Questionable.Model.Quest;
namespace Questionable.Controller;
internal sealed class QuestController : MiniTaskController<QuestController>, IDisposable
internal sealed class QuestController : MiniTaskController<QuestController>
{
private readonly IClientState _clientState;
private readonly GameFunctions _gameFunctions;