changed readme, big nothing texture

This commit is contained in:
2025-12-12 15:03:14 +02:00
parent 91a3286a5d
commit 1cfe83d893
5 changed files with 26 additions and 2068 deletions

View File

@@ -1,4 +1,6 @@
Basic economy for the fabric modloader using diamonds as currency. Uses the "/diamonds" command along with the following subcommands
based off diamondeconomy mod: https://modrinth.com/mod/diamond-economy
Basic economy for the fabric modloader using custom nothing items as currency. Uses the "/celecon" command along with the following subcommands
- balance [Optional: player] - tells user how much money the player has
@@ -17,16 +19,3 @@ Operator only subcommands:
- take [players] [int] - takes $[int] from [players]
Placeholders:
- %diamondeconomy:rank_from_player%
- %diamondeconomy:rank_from_string_uuid%
- %diamondeconomy:balance_from_player%
- %diamondeconomy:balance_from_name%
- %diamondeconomy:balance_from_rank%
- %diamondeconomy:balance_from_string_uuid%
Downloads:
- https://www.curseforge.com/minecraft/mc-mods/diamond-economy
- https://modrinth.com/mod/diamond-economy

View File

@@ -8,7 +8,7 @@ fabric_loader_version=0.14.21
fabric_api_version=0.83.0+1.20.1
# Mod Properties
mod_version = 1.0.0
mod_version = 1.1.0
maven_group = com.smithy.celestianeconomy
archives_base_name = celestianeconomy

View File

@@ -83,7 +83,7 @@ public class CelestianEconomy implements ModInitializer {
}
public static final Item SMALL_NOTHING = new Item(new Item.Properties().fireResistant());
public static final Block BIG_NOTHING_BLOCK = new Block(FabricBlockSettings.copyOf(Blocks.HAY_BLOCK).sounds(SoundType.GRASS).mapColor(MapColor.COLOR_LIGHT_GREEN));
public static final Block BIG_NOTHING_BLOCK = new Block(FabricBlockSettings.copyOf(Blocks.HAY_BLOCK).luminance(3).sounds(SoundType.GRASS).mapColor(MapColor.COLOR_LIGHT_GREEN));
@Override
public void onInitialize() {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB