Skip to content

Commit

Permalink
add LilPumpThreads fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Timidan committed Aug 2, 2024
1 parent 443d469 commit fe18868
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts/addMissingSleeves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ import { Signer } from "ethers";
import { ethers, network, run } from "hardhat";
import { itemManagerAlt } from "./helperFunctions";
import {
bodyWearable,
BodyWearableOutput,
updateSleevesTaskForSvgType,
updateSvgTaskForSvgType,
} from "./svgHelperFunctions";

async function main() {
Expand All @@ -26,13 +25,14 @@ async function main() {
}

const sleeve = await updateSleevesTaskForSvgType([36], "front");
const wearableId = 248;
const output: BodyWearableOutput = bodyWearable(
`${wearableId}_UpOnlyShirt`,
"svgItems"
);

const body = await updateSvgTaskForSvgType([160], "front");

//UpOnlyShirt sleeve fix
await run("updateSvgs", sleeve);

//LilPumpThread Frontview fix
await run("updateSvgs", body);
}

if (require.main === module) {
Expand Down

0 comments on commit fe18868

Please sign in to comment.