Cultrarius
(Cultrarius)
2
It says what the problem is right there in the log:
Basically, you reference AGameModeBase::SetPause, but the linker cannot find the implementation for it.
There are two possible cases:
- You called it somewhere: remove or substitute that call to see if that solves the problem
- You created a child class from AGameModeBase which is missing the SetPause function. Go and implement it in your class.