diff options
Diffstat (limited to 'src/player.cpp')
-rw-r--r-- | src/player.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/player.cpp b/src/player.cpp index 999d842fa..6dd90e957 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -48,6 +48,13 @@ Player::Player(IGameDef *gamedef): inventory.addList("craft", 9); inventory.addList("craftpreview", 1); inventory.addList("craftresult", 1); + + // Can be redefined via Lua + inventory_formspec = "invsize[8,7.5;]" + //"image[1,0.6;1,2;player.png]" + "list[current_player;main;0,3.5;8,4;]" + "list[current_player;craft;3,0;3,3;]" + "list[current_player;craftpreview;7,1;1,1;]"; } Player::~Player() |