C++ 4.14 Transition Guide

Im having the same issue going from .13 -> .14

EDIT:
Looks like ObjectBase.h was removed and replaced with Object.h, ObjectResources.h, and UObjectBaseUtility.h. Working now to figure out how to get them to work properly for the plugins GameMode.generated.h.

I was having trouble with the following line:

AGameMode* const Game = World->GetAuthGameMode(); // error C2440: ‘initializing’: cannot convert from ‘AGameStateBase *’ to ‘AGameState *’

Seems like the function is templated now and can take <AGameMode>

AGameMode* const Game = World->GetAuthGameMode<AGameMode>();

My team is experiencing a very similar issue. Was a solution ever found? Any new insights into what it might be?