diff --git a/Source/UnrealEnginePython/Private/Wrappers/UEPyFFoliageInstance.cpp b/Source/UnrealEnginePython/Private/Wrappers/UEPyFFoliageInstance.cpp index 951b25ae6..b3205f03e 100644 --- a/Source/UnrealEnginePython/Private/Wrappers/UEPyFFoliageInstance.cpp +++ b/Source/UnrealEnginePython/Private/Wrappers/UEPyFFoliageInstance.cpp @@ -141,7 +141,7 @@ static PyObject *py_ue_ffoliage_instance_get_instance_id(ue_PyFFoliageInstance * return PyLong_FromLong(self->instance_id); } -#if ENGINE_MINOR_VERSION > 18 +#if ENGINE_MINOR_VERSION > 19 static PyObject *py_ue_ffoliage_instance_get_base_component(ue_PyFFoliageInstance *self, void *closure) { get_instance(self); @@ -162,7 +162,7 @@ static PyGetSetDef ue_PyFFoliageInstance_getseters[] = { { (char *)"guid", (getter)py_ue_ffoliage_instance_get_procedural_guid, nullptr, (char *)"", NULL }, { (char *)"base_id", (getter)py_ue_ffoliage_instance_get_base_id, nullptr, (char *)"", NULL }, { (char *)"instance_id", (getter)py_ue_ffoliage_instance_get_instance_id, nullptr, (char *)"", NULL }, -#if ENGINE_MINOR_VERSION > 18 +#if ENGINE_MINOR_VERSION > 19 { (char *)"base_component", (getter)py_ue_ffoliage_instance_get_base_component, nullptr, (char *)"", NULL }, #endif { NULL } /* Sentinel */