Skip to content

Commit ba12113

Browse files
authored
ScriptCallbackMethodVoidCallInfo requires call info. (#838)
1 parent e871592 commit ba12113

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NWN.Anvil/src/main/Services/Scripts/Callbacks/ScriptCallbackMethodVoidCallInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ internal sealed class ScriptCallbackMethodVoidCallInfo(MethodInfo methodInfo, ob
88
{
99
private readonly Action<CallInfo> callback = (Action<CallInfo>)Delegate.CreateDelegate(typeof(Action<CallInfo>), service, methodInfo);
1010

11-
public override bool RequiresCallInfo => false;
11+
public override bool RequiresCallInfo => true;
1212

1313
public override ScriptHandleResult Execute(CallInfo? callInfo)
1414
{

0 commit comments

Comments
 (0)