Skip to content

Commit

Permalink
Lava smelting destroys items 25% of the time
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDeviantCrafter committed Aug 1, 2019
1 parent 6f9d3b2 commit ac06103
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 10 deletions.
10 changes: 0 additions & 10 deletions config/Guide-API/Guide-API.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,8 @@ books {
# This is a global override for all books. [default: true]
B:canSpawnWithBooks=true

##########################################################################################################
# spawn
#--------------------------------------------------------------------------------------------------------#
# If true, the user will spawn with the book.
# This defaults to the value the book owner has set and is overridden by this config.
##########################################################################################################

spawn {
# [default: true]
B:"crossroads:crossroadsmainguide"=true

# [default: false]
B:"crossroads:info_guide"=false
}

Expand Down
42 changes: 42 additions & 0 deletions config/popcornsmelting.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Configuration file

general {
# How many times a fireproof item must bounce before it will start
# bouncing higher. Makes it easier to build autocollecting smelter pits.
# -1 disables this behavior. [range: -1 ~ 128, default: 8]
I:bouncesToBounceHigher=8

# How many times a fireproof item must bounce before it smelts.
# Higher values encourage building smelters, lower values encourage
# ad-hoc usage with a flint-and-steel. [range: 0 ~ 128, default: 2]
I:bouncesToSmelt=2

# What percentage of smelted items should be destroyed by the process
# [range: 0.0 ~ 1.0, default: 0.0]
S:chanceToDestroyItem=0.25

# How dropped fireproof items should behave on fire.
# Possible values: smelt, bounce, burn [default: smelt]
S:fireBehavior=smelt

# What kinds of items should be made fireproof.
# Possible values: all, all_but_fuels, smeltable_only [default: smeltable_only]
S:fireproof=smeltable_only

# If true, all furnace recipes will be valid popcorn smelting recipes.
# If false, there will be no popcorn smelting recipes. You will have
# to add some, e.g. with CraftTweaker.
#
# When true, popcorn smelting specific recipes can still be added, and
# they will take precedence over normal smelting recipes.
#
# Calling removeAll on the smelting registry from CraftTweaker will
# implicitly set this config setting to false for that session. [default: true]
B:inheritFurnaceRecipes=true

# How dropped fireproof items should behave on lava.
# Possible values: smelt, bounce, burn [default: smelt]
S:lavaBehavior=smelt
}


0 comments on commit ac06103

Please sign in to comment.