Skip to content

Commit f3a877e

Browse files
Added two new flowers
1 parent 7819450 commit f3a877e

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

res/tex/terrain.png

93 Bytes
Loading

src/blocks/blockdrawing.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const vec2i* const blockTextures[] = {
4646
[BLOCK_GOLD_ORE] = (vec2i[1]) {{3, 1}},
4747
[BLOCK_REDSTONE_ORE] = (vec2i[1]) {{4, 1}},
4848
[BLOCK_DIAMOND_ORE] = (vec2i[1]) {{5, 1}},
49-
[BLOCK_FLOWER] = (vec2i[2]) {{6, 1}, {7, 1}},
49+
[BLOCK_FLOWER] = (vec2i[4]) {{6, 1}, {7, 1}, {3, 7}, {4, 7}},
5050

5151
[BLOCK_TALL_GRASS] = (vec2i[1]) {{0, 2}},
5252
[BLOCK_GLASS] = (vec2i[1]) {{1, 2}},

src/inventory.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ const InventoryTab inventory[NUM_INVENTORY_TABS] = {
3535
}
3636
},
3737
{
38-
"Plants", 9, B(BLOCK_FLOWER),
38+
"Plants", 11, B(BLOCK_FLOWER),
3939
{
40-
B(BLOCK_FLOWER), {BLOCK_FLOWER, BLOCK_DATA_TEXTURE1}, B(BLOCK_TALL_GRASS), B(BLOCK_WHEAT), B(BLOCK_SUGAR_CANE), B(BLOCK_CACTUS),
41-
B(BLOCK_DEAD_SHRUB), B(BLOCK_MUSHROOM), {BLOCK_MUSHROOM, BLOCK_DATA_TEXTURE1}
40+
B(BLOCK_FLOWER), {BLOCK_FLOWER, BLOCK_DATA_TEXTURE1}, {BLOCK_FLOWER, BLOCK_DATA_TEXTURE2}, {BLOCK_FLOWER, BLOCK_DATA_TEXTURE3}, B(BLOCK_TALL_GRASS), B(BLOCK_WHEAT),
41+
B(BLOCK_SUGAR_CANE), B(BLOCK_CACTUS), B(BLOCK_DEAD_SHRUB), B(BLOCK_MUSHROOM), {BLOCK_MUSHROOM, BLOCK_DATA_TEXTURE1}
4242
}
4343
},
4444
{

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef _VERSION_H
22
#define _VERSION_H
33

4-
#define GAME_BASE_VERSION "1.0"
4+
#define GAME_BASE_VERSION "1.0.1"
55

66
#ifdef DEBUG
77
#define GAME_VERSION GAME_BASE_VERSION "-debug"

0 commit comments

Comments
 (0)