master #3

Open
cacahuetes wants to merge 881 commits from liza/Questionable:master into cacahuetes-ShB-Healer
2 changed files with 1 additions and 2 deletions
Showing only changes of commit e1b146ee1e - Show all commits

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;