Updated comment

This commit is contained in:
Alex Corn 2022-02-02 03:35:44 -05:00
parent f5d65a9ad4
commit 640c47b933
No known key found for this signature in database
GPG Key ID: E51989A3E7A27FDF
6 changed files with 7 additions and 7 deletions

View File

@ -1,8 +1,5 @@
<component name="ProjectCodeStyleConfiguration"> <component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173"> <code_scheme name="Project" version="173">
<XML>
<option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
</XML>
<codeStyleSettings language="JSON"> <codeStyleSettings language="JSON">
<indentOptions> <indentOptions>
<option name="USE_TAB_CHARACTER" value="true" /> <option name="USE_TAB_CHARACTER" value="true" />

View File

@ -1,5 +1,6 @@
<component name="ProjectCodeStyleConfiguration"> <component name="ProjectCodeStyleConfiguration">
<state> <state>
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" /> <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state> </state>
</component> </component>

View File

@ -2,6 +2,7 @@
<project version="4"> <project version="4">
<component name="ProjectModuleManager"> <component name="ProjectModuleManager">
<modules> <modules>
<module fileurl="file://$PROJECT_DIR$/../node-steamcommunity Wiki/.idea/node-steamcommunity Wiki.iml" filepath="$PROJECT_DIR$/../node-steamcommunity Wiki/.idea/node-steamcommunity Wiki.iml" />
<module fileurl="file://$PROJECT_DIR$/.idea/steamcommunity.iml" filepath="$PROJECT_DIR$/.idea/steamcommunity.iml" /> <module fileurl="file://$PROJECT_DIR$/.idea/steamcommunity.iml" filepath="$PROJECT_DIR$/.idea/steamcommunity.iml" />
</modules> </modules>
</component> </component>

View File

@ -5,5 +5,6 @@
<content url="file://$MODULE_DIR$" /> <content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="node-steamcommunity Wiki" />
</component> </component>
</module> </module>

View File

@ -2,5 +2,6 @@
<project version="4"> <project version="4">
<component name="VcsDirectoryMappings"> <component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" /> <mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$/../node-steamcommunity Wiki" vcs="Git" />
</component> </component>
</project> </project>

View File

@ -234,10 +234,9 @@ SteamCommunity.prototype.createBoosterPack = function(appid, useUntradableGems,
appid, appid,
series: 1, series: 1,
// tradability_preference can be a value 1-3 // tradability_preference can be a value 1-3
// 1: Prefer using tradable gems // 1: Prefer using tradable gems, but use untradable if necessary
// 2: Prefer using tradable gems (this value is sent when you don't have any untradable gems and thus aren't // 2: Only use tradable gems
// prompted whether you want to use tradable or untradable gems, but it appears to work the same as 1) // 3: Prefer using untradable gems, but use tradable if necessary
// 3: Prefer using untradable gems
tradability_preference: useUntradableGems ? 3 : 2 tradability_preference: useUntradableGems ? 3 : 2
}, },
json: true, json: true,