Need help tp figure out what these mean

Hi there , i recently foud this 2 error. But i dont know what they want me to check / change

1>C:\Users\Rui\Documents\Unreal Projects\pap\Source\pap\Private\papCharacter.cpp(143): error C2084: function 'void ApapCharacter::BeginPlay(void)' already has a body
1>          C:\Users\Rui\Documents\Unreal Projects\pap\Source\pap\Public\papCharacter.h(62) : see previous definition of 'BeginPlay'

Any help ? ^^
Thank you

Without a bit of code it could be hard to tackle down the error.

From the log the compiler tells you that you have a duplicate of ApapCharacter::BeginPlay, check that you have it only defined once not only in that cpp file but in all others too.

This is a common case when you copy&past a class over to create a new one an you missed to fix all class names of the new one.

i could put my code in here , but its huge … :s

I guess you just have ApapCharacter::BeginPlay more then once in your code base (at-least this is what the compiler/linker said).

Ya, there were 2 beginplay.
I tought i needed to call difrent times, for difrent stuff… Apperantly mooving the code to only 1 beginplay worked , Thank you