Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Quests issues]: ISNS - "The Last Class..." missing proper reward #2052

Closed
ShinryuAspect opened this issue Sep 16, 2024 · 0 comments
Closed
Labels
Quest Bug Problem with Quests

Comments

@ShinryuAspect
Copy link

ShinryuAspect commented Sep 16, 2024

Modpack Version

0.3.2

Describe the issue

Iron's Spells N' Spellbooks' - "The Last Class..." quest (the one you get once you get into the Deep Dark biome) it's missing a proper reward. From what I've seen inside the quests' files, it should be awarding you an Ecnahnted Book with Swift Sneak 3, but, eight now, it's just giving you an Enchanted Book with no enchantment.
Luckily, the fix is farily simple and I managed to do if by myself, the syntax for the reward was wrong (I just copied the one from another reward and edited it to give Swift Sneak 3).

Current syntax (iron_spells_and_spellbooks.snbt - ln 2199):

rewards: [{
	id: "7168285F8D52B227"
	item: {
		Count: 1
		id: "minecraft:enchanted_book"
		tag: {
			Enchantments: {
				id: "minecraft:swift_sneak"
				lvl: "3"
			}
		}
	}
	type: "item"
}]

Fixed syntax:

rewards: [{
	id: "7168285F8D52B227"
	item: {
		Count: 1
		id: "minecraft:enchanted_book"
		tag: {
			StoredEnchantments: {
				id: "minecraft:swift_sneak"
				lvl: 3s
			}
		}
	}
	type: "item"
}]

Aparently, the "tag" was wrong and so was the "lvl" property.

@ShinryuAspect ShinryuAspect added the Quest Bug Problem with Quests label Sep 16, 2024
@ShinryuAspect ShinryuAspect changed the title [Quests issues]: ISNS "The Last Class..." missing proper reward [Quests issues]: ISNS - "The Last Class..." missing proper reward Sep 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Quest Bug Problem with Quests
Projects
None yet
Development

No branches or pull requests

2 participants