Skip to content

Commit

Permalink
Add some comments around default vlaues
Browse files Browse the repository at this point in the history
  • Loading branch information
EddieEldridge committed Dec 8, 2024
1 parent d99c446 commit c11a2dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions M2TWEOP Code/M2TWEOP library/luaPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ sol::state* luaPlugin::init(std::string& luaFilePath, std::string& modPath)
tables.M2TWEOP.set_function("getFactionRecordNum", &factionHelpers::getFactionRecordNum);

/***
Hides tooltips for unknown units, only use if you use empty card instead of question mark as the UI.
Hides tooltips for unknown units, only use if you use empty card instead of question mark as the UI. Disabled by default.
@function M2TWEOP.hideUnknownUnitTooltips
@tparam bool set
@usage
Expand All @@ -913,7 +913,7 @@ sol::state* luaPlugin::init(std::string& luaFilePath, std::string& modPath)
tables.M2TWEOP.set_function("hideUnknownUnitTooltips", &m2tweopOptions::setHideUnknownUnitTooltips);

/***
Faction specific unit cards are always chosen if found.
Faction specific unit cards are always chosen if found. Enabled by default.
@function M2TWEOP.handleUnitCards
@tparam bool set
@usage
Expand All @@ -922,7 +922,7 @@ sol::state* luaPlugin::init(std::string& luaFilePath, std::string& modPath)
tables.M2TWEOP.set_function("handleUnitCards", &m2tweopOptions::setHandleUnitCards);

/***
Factions without a family tree or a teutonic one still get marriage offers and produce children.
Factions without a family tree or a teutonic one still get marriage offers and produce children. Enabled by default.
@function M2TWEOP.enableFamilyEventsWithoutTree
@tparam bool set
@usage
Expand Down

0 comments on commit c11a2dd

Please sign in to comment.