Skip to content

Commit

Permalink
Add bounce on impact projectile item #952
Browse files Browse the repository at this point in the history
  • Loading branch information
athrane committed Sep 23, 2020
1 parent 0f9aa17 commit 0066f4b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/bassebombecraft/config/ModConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -2172,7 +2172,7 @@ static void setupCompositeItemsConfig() {
name = DigMobHoleProjectileModifierItem.NAME;
COMMON_BUILDER.comment(name + " settings").push(name);
digMobHoleProjectileModifierItem = getInstance(COMMON_BUILDER, name,
"A mythical image of the modification of a projectile. If a creature is hit then an inconvenient hole is digged beneath the mob.",
"A mythical image of the modification of a projectile. If a mob is hit then an inconvenient hole is digged beneath the mob.",
25);
COMMON_BUILDER.pop();

Expand All @@ -2182,7 +2182,7 @@ static void setupCompositeItemsConfig() {
name = SpawnCobwebProjectileModifierItem.NAME;
COMMON_BUILDER.comment(name + " settings").push(name);
spawnCobwebProjectileModifierItem = getInstance(COMMON_BUILDER, name,
"A mythical image of the modification of a projectile. If a creature is hit then a sticky cobweb is spawned around the mob.",
"A mythical image of the modification of a projectile. If a mob is hit then a sticky cobweb is spawned around the mob.",
25);
COMMON_BUILDER.pop();

Expand All @@ -2192,7 +2192,7 @@ static void setupCompositeItemsConfig() {
name = SpawnAnvilProjectileModifierItem.NAME;
COMMON_BUILDER.comment(name + " settings").push(name);
spawnAnvilProjectileModifierItem = getInstance(COMMON_BUILDER, name,
"A mythical image of the modification of a projectile. If a creature is hit then a falling anvil is spawned above the mob.",
"A mythical image of the modification of a projectile. If a mob is hit then a falling anvil is spawned above the mob.",
25);
COMMON_BUILDER.pop();

Expand All @@ -2202,7 +2202,7 @@ static void setupCompositeItemsConfig() {
name = ReceiveAggroProjectileModifierItem.NAME;
COMMON_BUILDER.comment(name + " settings").push(name);
receiveAggroProjectileModifierItem = getInstance(COMMON_BUILDER, name,
"A mythical image of the modification of a projectile. If a creature is hit then all mobs in the vicinity will aggro the creature.",
"A mythical image of the modification of a projectile. If a mob is hit then all mobs in the vicinity will aggro the creature.",
25);
COMMON_BUILDER.pop();

Expand All @@ -2212,7 +2212,7 @@ static void setupCompositeItemsConfig() {
name = BounceProjectileModifierItem.NAME;
COMMON_BUILDER.comment(name + " settings").push(name);
bounceProjectileModifierItem = getInstance(COMMON_BUILDER, name,
"A mythical image of the modification of a projectile. If a block is hit then the project bounce of the block in some other direction.",
"A mythical image of the modification of a projectile. If a block is hit then the projectile will bounce of in some other direction.",
25);
COMMON_BUILDER.pop();

Expand Down

0 comments on commit 0066f4b

Please sign in to comment.