Skip to content
Snippets Groups Projects
Commit c1a2736a authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'patch-3' into 'pregmod-master'

Fix toys misclassed as clothing

See merge request pregmodfan/fc-pregmod!7422
parents e5e1130d ba2fbc80
No related branches found
No related tags found
1 merge request!7422Fix toys misclassed as clothing
...@@ -573,13 +573,13 @@ The room containing all the clothes and accessories you have available to dress ...@@ -573,13 +573,13 @@ The room containing all the clothes and accessories you have available to dress
<p> <p>
<div> <div>
<<if $boughtItem.toys.dildos == 0>> <<if $boughtItem.toys.dildos == 0>>
[[Order a shipment of extra long dildos and bullet vibes|Wardrobe][cashX(forceNeg(Math.trunc(10000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.dildos = 1]] [[Order a shipment of extra long dildos and bullet vibes|Wardrobe][cashX(forceNeg(Math.trunc(10000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.dildos = 1]]
<span class="detail">Costs <<print cashFormat(Math.trunc(10000 * $upgradeMultiplierTrade))>></span> <span class="detail">Costs <<print cashFormat(Math.trunc(10000 * $upgradeMultiplierTrade))>></span>
<<else>> <<else>>
You are well stocked with extra long dildos in a variety of sizes, as well as a good amount of bullet vibrators. You are well stocked with extra long dildos in a variety of sizes, as well as a good amount of bullet vibrators.
<<if $boughtItem.clothing.smartVibes == 0>> <<if $boughtItem.toys.smartVibes == 0>>
<div class="indent"> <div class="indent">
[[Order the "smart" variant of the bullet vibrators|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.smartVibes = 1]] [[Order the "smart" variant of the bullet vibrators|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.smartVibes = 1]]
<span class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></span> <span class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></span>
</div> </div>
<<else>> <<else>>
...@@ -590,7 +590,7 @@ The room containing all the clothes and accessories you have available to dress ...@@ -590,7 +590,7 @@ The room containing all the clothes and accessories you have available to dress
<div> <div>
<<if $boughtItem.toys.vaginalAttachments == 0>> <<if $boughtItem.toys.vaginalAttachments == 0>>
[[Order a shipment of vibrating dildo attachments|Wardrobe][cashX(forceNeg(Math.trunc(10000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.vaginalAttachments = 1]] [[Order a shipment of vibrating dildo attachments|Wardrobe][cashX(forceNeg(Math.trunc(10000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.vaginalAttachments = 1]]
<span class="detail">Costs <<print cashFormat(Math.trunc(10000 * $upgradeMultiplierTrade))>></span> <span class="detail">Costs <<print cashFormat(Math.trunc(10000 * $upgradeMultiplierTrade))>></span>
<<else>> <<else>>
You are well stocked with attachments that allow dildos to vibrate. You are well stocked with attachments that allow dildos to vibrate.
...@@ -599,7 +599,7 @@ The room containing all the clothes and accessories you have available to dress ...@@ -599,7 +599,7 @@ The room containing all the clothes and accessories you have available to dress
<div> <div>
<<if $boughtItem.toys.buttPlugs == 0>> <<if $boughtItem.toys.buttPlugs == 0>>
[[Order a shipment of extra long buttplugs|Wardrobe][cashX(forceNeg(Math.trunc(10000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.buttPlugs = 1]] [[Order a shipment of extra long buttplugs|Wardrobe][cashX(forceNeg(Math.trunc(10000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.buttPlugs = 1]]
<span class="detail">Costs <<print cashFormat(Math.trunc(10000 * $upgradeMultiplierTrade))>></span> <span class="detail">Costs <<print cashFormat(Math.trunc(10000 * $upgradeMultiplierTrade))>></span>
<<else>> <<else>>
You are well stocked with extra long buttplugs in a variety of sizes. You are well stocked with extra long buttplugs in a variety of sizes.
...@@ -608,7 +608,7 @@ The room containing all the clothes and accessories you have available to dress ...@@ -608,7 +608,7 @@ The room containing all the clothes and accessories you have available to dress
<div> <div>
<<if $boughtItem.toys.buttPlugTails == 0>> <<if $boughtItem.toys.buttPlugTails == 0>>
[[Order a shipment of attachable tails|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.buttPlugTails = 1]] [[Order a shipment of attachable tails|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.buttPlugTails = 1]]
<span class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></span> <span class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></span>
<<else>> <<else>>
You are well stocked with tails to attach to your buttplugs. You are well stocked with tails to attach to your buttplugs.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment