Skip to content

Commit

Permalink
FUNC_Final flag is unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
trumank committed Jul 17, 2024
1 parent 7b6f40f commit 0c7d9a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hook/src/hooks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub unsafe fn initialize() -> Result<()> {
if let Some(hook) = hooks.get(path.as_str()) {
function
.function_flags
.insert(ue::EFunctionFlags::FUNC_Native | ue::EFunctionFlags::FUNC_Final);
.insert(ue::EFunctionFlags::FUNC_Native);
function.func = *hook;
}
}
Expand Down

0 comments on commit 0c7d9a0

Please sign in to comment.