From 4415191da57dfcf16128b897456e35a1ce0f275a Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Wed, 3 Nov 2021 20:08:23 -0400 Subject: [PATCH] fix bc --- .../backwardsCompatibility.js | 64 +++++++++---------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/src/data/backwardsCompatibility/backwardsCompatibility.js b/src/data/backwardsCompatibility/backwardsCompatibility.js index 65c45c00b76..e7450539b16 100644 --- a/src/data/backwardsCompatibility/backwardsCompatibility.js +++ b/src/data/backwardsCompatibility/backwardsCompatibility.js @@ -886,102 +886,102 @@ App.Update.globalVariables = function(node) { V.trinkets = new Map([]); switch (V.PC.career) { case "arcology owner": - V.trinkets.add("a miniature model of your first arcology", {}); + V.trinkets.set("a miniature model of your first arcology", {}); break; case "wealth": - V.trinkets.add("a collection of diplomas from expensive schools", {}); + V.trinkets.set("a collection of diplomas from expensive schools", {}); break; case "trust fund": - V.trinkets.add("a diploma from your expensive boarding school", {}); + V.trinkets.set("a diploma from your expensive boarding school", {}); break; case "rich kid": - V.trinkets.add("an extensive collection of pricey Old World trading cards.", {}); + V.trinkets.set("an extensive collection of pricey Old World trading cards.", {}); break; case "capitalist": case "entrepreneur": case "business kid": - V.trinkets.add("a framed low denomination piece of paper money from your native country", {}); + V.trinkets.set("a framed low denomination piece of paper money from your native country", {}); break; case "mercenary": - V.trinkets.add("a battered old assault rifle", {}); + V.trinkets.set("a battered old assault rifle", {}); break; case "recruit": - V.trinkets.add("a battered old pistol", {}); + V.trinkets.set("a battered old pistol", {}); break; case "child soldier": - V.trinkets.add("a combat knife", {}); + V.trinkets.set("a combat knife", {}); break; case "slaver": - V.trinkets.add("a framed picture of a slave with her sale price scrawled across the bottom", {}); + V.trinkets.set("a framed picture of a slave with her sale price scrawled across the bottom", {}); break; case "slave overseer": - V.trinkets.add("a framed picture of slave pens you used to lord over", {}); + V.trinkets.set("a framed picture of slave pens you used to lord over", {}); break; case "slave tender": - V.trinkets.add("a framed picture of you hosing down a slave for market", {}); + V.trinkets.set("a framed picture of you hosing down a slave for market", {}); break; case "engineer": - V.trinkets.add("an artist's impression of an early arcology design", {}); + V.trinkets.set("an artist's impression of an early arcology design", {}); break; case "construction": - V.trinkets.add("the blueprints of a proto-arcology you helped construct", {}); + V.trinkets.set("the blueprints of a proto-arcology you helped construct", {}); break; case "worksite helper": - V.trinkets.add("the hardhat you used to wear around worksites", {}); + V.trinkets.set("the hardhat you used to wear around worksites", {}); break; case "medicine": - V.trinkets.add("a framed postsurgical x-ray", {}); + V.trinkets.set("a framed postsurgical x-ray", {}); break; case "medical assistant": - V.trinkets.add("your personal set of surgical tools", {}); + V.trinkets.set("your personal set of surgical tools", {}); break; case "nurse": - V.trinkets.add("a framed picture of you outside the clinic you worked in", {}); + V.trinkets.set("a framed picture of you outside the clinic you worked in", {}); break; case "celebrity": - V.trinkets.add("a framed copy of the first news story featuring yourself", {}); + V.trinkets.set("a framed copy of the first news story featuring yourself", {}); break; case "rising star": - V.trinkets.add("a framed poster of the first movie you starred in", {}); + V.trinkets.set("a framed poster of the first movie you starred in", {}); break; case "child star": - V.trinkets.add("a copy of the movie that gave you fame", {}); + V.trinkets.set("a copy of the movie that gave you fame", {}); break; case "BlackHat": - V.trinkets.add("a news clipping of your first successful live hack", {}); + V.trinkets.set("a news clipping of your first successful live hack", {}); break; case "hacker": - V.trinkets.add("an old USB stick that ruined a corporation", {}); + V.trinkets.set("an old USB stick that ruined a corporation", {}); break; case "script kiddy": - V.trinkets.add("a CD containing your first foray into scripting", {}); + V.trinkets.set("a CD containing your first foray into scripting", {}); break; case "escort": - V.trinkets.add("a copy of the first porno you starred in", {}); + V.trinkets.set("a copy of the first porno you starred in", {}); break; case "prostitute": - V.trinkets.add("a nude pinup of you from the brothel you used to work in", {}); + V.trinkets.set("a nude pinup of you from the brothel you used to work in", {}); break; case "child prostitute": - V.trinkets.add("a pair of your used underwear", {}); + V.trinkets.set("a pair of your used underwear", {}); break; case "servant": - V.trinkets.add("a framed picture of your late Master", {}); + V.trinkets.set("a framed picture of your late Master", {}); break; case "handmaiden": - V.trinkets.add("a framed picture of your late Master's family", {}); + V.trinkets.set("a framed picture of your late Master's family", {}); break; case "child servant": - V.trinkets.add("a framed picture of your late Master patting your head", {}); + V.trinkets.set("a framed picture of your late Master patting your head", {}); break; case "gang": - V.trinkets.add("your favorite handgun, whose sight has instilled fear in many", {}); + V.trinkets.set("your favorite handgun, whose sight has instilled fear in many", {}); break; case "hoodlum": - V.trinkets.add("a hood ornament stolen from a fancy Old World vehicle", {}); + V.trinkets.set("a hood ornament stolen from a fancy Old World vehicle", {}); break; case "street urchin": - V.trinkets.add("your trusty knife, whose kept you safe many a night", {}); + V.trinkets.set("your trusty knife, whose kept you safe many a night", {}); break; } } else if (Array.isArray(V.trinkets)) { -- GitLab