What is agent->void vs player->void?

Getting this verse compilation error for my Function.

C:/Users/adamt/Documents/Fortnite Projects/Payload/Plugins/Payload/Content/ProjectileDevice.verse(45,47, 45,57) : Script error 3509: This function parameter expects a value of type agent->void, but this argument is an incompatible value of type player->void.

image

1 Like

Latest updated had some Verse API changes. Just change the type in your callback to agent instead of player.

Function_1(Player:agent):void=
    ...
1 Like