Skip to content

Commit

Permalink
v1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
RubixDev committed Jul 29, 2022
1 parent b3da2be commit f8b6007
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 8 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Extension Mod for [gnembon's fabric-carpet](https://github.com/gnembon/fabric-ca
- [`TNT`](markdown/TNT_Category.md)

## Index
Count: 96
Count: 97
- [anvilledBlueIce](#anvilledblueice)
- [anvilledIce](#anvilledice)
- [anvilledPackedIce](#anvilledpackedice)
Expand Down Expand Up @@ -113,6 +113,7 @@ Count: 96
- [slimeChunkPercentage](#slimechunkpercentage)
- [smokerGreenDye](#smokergreendye)
- [smokerLimeDye](#smokerlimedye)
- [snowMelting](#snowmelting)
- [snowballWaterDrag](#snowballwaterdrag)
- [splashOxidize](#splashoxidize)
- [stalagmiteSteppingDamage](#stalagmitesteppingdamage)
Expand Down Expand Up @@ -815,6 +816,13 @@ Expect a lag spike when changing the value
- Required options: `true`, `false`
- Categories: `CRAFTING`, `RUG`, `SURVIVAL`

### snowMelting
Whether snow can melt
- Type: `boolean`
- Default value: `true`
- Required options: `true`, `false`
- Categories: `CREATIVE`, `RUG`, `SURVIVAL`

### snowballWaterDrag
How fast thrown Snowballs can travel under water. 0.99 is the default for above water and for Tridents

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ org.gradle.jvmargs=-Xmx4G
carpet_core_version=1.4.83+v220727

# Mod Properties
mod_version = 1.3.4
mod_version = 1.3.5
maven_group = de.rubixdev.rug
archives_base_name = rug

Expand Down
10 changes: 9 additions & 1 deletion markdown/CREATIVE_Category.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

For a list of all implemented Rules go [here](../README.md)
## Index
Count: 1
Count: 2
- [reachDistance](#reachdistance)
- [snowMelting](#snowmelting)

## Rules in CREATIVE Category

Expand All @@ -18,3 +19,10 @@ Mod needed on server and client for this feature to work
- Additional notes:
- You must choose a value from 0 to 100
- Is disabled when [reach-entity-attributes](https://github.com/JamiesWhiteShirt/reach-entity-attributes) is installed

### snowMelting
Whether snow can melt
- Type: `boolean`
- Default value: `true`
- Required options: `true`, `false`
- Categories: `CREATIVE`, `RUG`, `SURVIVAL`
10 changes: 9 additions & 1 deletion markdown/SURVIVAL_Category.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

For a list of all implemented Rules go [here](../README.md)
## Index
Count: 70
Count: 71
- [basaltToBlackstoneConversion](#basalttoblackstoneconversion)
- [basaltToLavaConversion](#basalttolavaconversion)
- [blastFurnaceGlass](#blastfurnaceglass)
Expand Down Expand Up @@ -58,6 +58,7 @@ Count: 70
- [silkTouchSpawners](#silktouchspawners)
- [smokerGreenDye](#smokergreendye)
- [smokerLimeDye](#smokerlimedye)
- [snowMelting](#snowmelting)
- [splashOxidize](#splashoxidize)
- [stalagmiteSteppingDamage](#stalagmitesteppingdamage)
- [stonecutterDamage](#stonecutterdamage)
Expand Down Expand Up @@ -559,6 +560,13 @@ Expect a lag spike when changing the value
- Required options: `true`, `false`
- Categories: `CRAFTING`, `RUG`, `SURVIVAL`

### snowMelting
Whether snow can melt
- Type: `boolean`
- Default value: `true`
- Required options: `true`, `false`
- Categories: `CREATIVE`, `RUG`, `SURVIVAL`

### splashOxidize
Copper blocks oxidize one stage when hit with a water bottle
- Type: `boolean`
Expand Down
3 changes: 2 additions & 1 deletion markdown/curseforge.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Extension Mod for [gnembon's fabric-carpet](https://github.com/gnembon/fabric-ca
If you encounter any issues, please let me know on [GitHub](https://github.com/RubixDev/Rug/issues) (preferred) or here in the comments.

## List of implemented Rules
Count: 96
Count: 97
- anvilledBlueIce
- anvilledIce
- anvilledPackedIce
Expand Down Expand Up @@ -88,6 +88,7 @@ Count: 96
- slimeChunkPercentage
- smokerGreenDye
- smokerLimeDye
- snowMelting
- snowballWaterDrag
- splashOxidize
- stalagmiteSteppingDamage
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/rubixdev/rug/RugServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
import org.apache.logging.log4j.Logger;

public class RugServer implements CarpetExtension, ModInitializer {
public static final String VERSION = "1.3.4";
public static final String VERSION = "1.3.5";
public static final Logger LOGGER = LogManager.getLogger("Rug");

private static MinecraftServer minecraftServer;
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"depends": {
"fabricloader": ">=0.14.6",
"fabric": "*",
"carpet": ">=1.4.79",
"minecraft": ">=1.19",
"carpet": ">=1.4.83",
"minecraft": ">=1.19.1",
"java": ">=17"
},
"suggests": {
Expand Down

0 comments on commit f8b6007

Please sign in to comment.