Tech Reborn

Tech Reborn

30M Downloads

[Bug] Scrapbox crafttweaker support is broken

Skillotic0703 opened this issue ยท 1 comments

commented

The scrapbox support seems to be broken. Here's the script I'm using:

mods.techreborn.scrapbox.removeAll();

//Living Root
mods.techreborn.scrapbox.addScrapboxDrop(botania:manaresource:20);

//Rubber Sapling
mods.techreborn.scrapbox.addScrapboxDrop(techreborn:rubber_sapling);

This script does exactly nothing.

commented

That's the exact script? Because that script won't work, it'll throw a syntax error. You need < > around the item names like this or crafttweaker won't recognise them as items.

mods.techreborn.scrapbox.removeAll();

//Living Root
mods.techreborn.scrapbox.addScrapboxDrop(<botania:manaresource:20>);

//Rubber Sapling
mods.techreborn.scrapbox.addScrapboxDrop(<techreborn:rubber_sapling>);