Skip to content

Commit

Permalink
Fixed WndStorage 2 units of empty space below the button, added the t…
Browse files Browse the repository at this point in the history
…ext.
  • Loading branch information
Smujb committed Nov 24, 2020
1 parent e011926 commit db0dc8d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions core/src/main/assets/messages/windows/windows.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
#
#

windows.wndstorage.put_item=Store Item
windows.wndstorage.choose_item=Choose an item to store
windows.wndstorage.full=Storage is full!
windows.wndstorage$wndtakeitem.take=Take Item

windows.wndblacksmith.prompt=Ok, a deal is a deal, here's what I can do for you: I can reforge 2 items and turn them into one of a better quality.
windows.wndblacksmith.select=Reforge an item
windows.wndblacksmith.reforge=Reforge them
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ protected void onClick() {
};
btnTake.setRect(0, bottom, width, BTN_HEIGHT);
add(btnTake);
bottom += BTN_HEIGHT + GAP;
bottom += BTN_HEIGHT;
resize(width, bottom);
}
}
Expand Down

0 comments on commit db0dc8d

Please sign in to comment.