| 274 | |
| 275 | #if WITH_EDITOR |
| 276 | void ULuaFunction::Bind() |
| 277 | { |
| 278 | const auto Outer = GetOuter(); |
| 279 | if (Outer && Outer->GetName().StartsWith("REINST_")) |
| 280 | { |
| 281 | FunctionFlags &= ~FUNC_Native; |
| 282 | return; |
| 283 | } |
| 284 | Super::Bind(); |
| 285 | } |
| 286 | |
| 287 | #endif |