muffin v7.5.11

This commit is contained in:
alydev 2026-08-17 20:29:32 +10:00
parent addf2d530f
commit 3102923ce2
522 changed files with 41082 additions and 211592 deletions

View file

@ -1,5 +1,3 @@
using System.Runtime.CompilerServices;
namespace Questionable.Controller.Conditions;
internal sealed class QuestCountCondition : StopCondition
@ -15,12 +13,8 @@ internal sealed class QuestCountCondition : StopCondition
return context.QuestsCompletedThisSession >= Count;
}
[MethodImpl(MethodImplOptions.NoInlining)]
public override string GetDescription()
{
DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(17, 1);
defaultInterpolatedStringHandler.AppendFormatted(Count);
defaultInterpolatedStringHandler.AppendLiteral(global::_003CModule_003E._202E_206C_200F_206B_206A_202A_202C_206F_200C_206C_202B_206B_206D_206D_206D_202D_206E_202E_206C_206E_206D_202C_206F_200D_202D_202E_206A_206D_202A_206A_202B_200D_200C_206D_202B_200B_200D_200C_206E_206B_202E<string>(1579947935));
return defaultInterpolatedStringHandler.ToStringAndClear();
return $"{Count} quests completed";
}
}