Skip to content

Commit

Permalink
change skyrim-allow-unknown-events-on-non-native-class default value …
Browse files Browse the repository at this point in the history
…to true, as all other strict checks are disabled by default
  • Loading branch information
XxX-Daniil-underscore-Zaikin-XxX committed Sep 13, 2024
1 parent 9596687 commit 4d48bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Caprica/main_options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ bool parseCommandLineArguments(int argc, char* argv[], caprica::CapricaJobManage
"Ensure values returned from BetaOnly and DebugOnly functions don't escape, as that will cause invalid code generation.")
("disable-implicit-conversion-from-none", po::bool_switch()->default_value(false),
"Disable implicit conversion from None in most situations where the use of None likely wasn't the author's intention.")
("skyrim-allow-unknown-events-on-non-native-class", po::value<bool>(&conf::Skyrim::skyrimAllowUnknownEventsOnNonNativeClass)->default_value(false),
("skyrim-allow-unknown-events-on-non-native-class", po::value<bool>(&conf::Skyrim::skyrimAllowUnknownEventsOnNonNativeClass)->default_value(true),
"Allow unknown events to be defined on non-native classes. This is encountered with some scripts in the base game having Events that are not present on ObjectReference.");

po::options_description skyrimCompatibilityDesc("Skyrim compatibility (default true with '--game=skyrim')");
Expand Down

0 comments on commit 4d48bc7

Please sign in to comment.