diff --git a/docs/src/highlevel-design/highleveldesignindex.md b/docs/src/highlevel-design/highleveldesignindex.md index 94f3c2e1..e316c0ca 100644 --- a/docs/src/highlevel-design/highleveldesignindex.md +++ b/docs/src/highlevel-design/highleveldesignindex.md @@ -23,4 +23,5 @@ Discussion of, at a high game-design level, how everything should work and conne - @subpage structuresandbuildings - @subpage dungeonsindex - @subpage controlDesign -- @subpage combat \ No newline at end of file +- @subpage combat +- @subpage survivalprogression diff --git a/docs/src/highlevel-design/survival/survivalprogression.md b/docs/src/highlevel-design/survival/survivalprogression.md new file mode 100644 index 00000000..d38af5d8 --- /dev/null +++ b/docs/src/highlevel-design/survival/survivalprogression.md @@ -0,0 +1,23 @@ +@page survivalprogression Survival Progression + + +Thoughts on how to structure the progression of the survival gamemode + + +## Beginning +Wander around world picking up sticks (from bushes) and rocks +Craft stick + rock into stone pickaxe + + + +## Stone Age +Mine for metals + - Copper + - Tin + + + +# Copper Age +Copper allows creating nails + + diff --git a/src/main/java/electrosphere/client/ui/components/SpawnSelectionPanel.java b/src/main/java/electrosphere/client/ui/components/SpawnSelectionPanel.java index 92f1b35d..021a4146 100644 --- a/src/main/java/electrosphere/client/ui/components/SpawnSelectionPanel.java +++ b/src/main/java/electrosphere/client/ui/components/SpawnSelectionPanel.java @@ -37,7 +37,7 @@ public class SpawnSelectionPanel { //margin from top for search input static final int SEARCH_INPUT_MARGIN = 10; - static final int SEARCH_INPUT_MIN_HEIGHt = 20; + static final int SEARCH_INPUT_MIN_HEIGHT = 20; /** * Creates the spawning menu selection panel @@ -64,7 +64,7 @@ public class SpawnSelectionPanel { TextInput searchInput = TextInput.createTextInput(); searchInput.setWidth(TEXT_INPUT_WIDTH); searchInput.setMinWidth(TEXT_INPUT_WIDTH); - searchInput.setMinHeight(SEARCH_INPUT_MIN_HEIGHt); + searchInput.setMinHeight(SEARCH_INPUT_MIN_HEIGHT); searchInput.setMarginTop(SEARCH_INPUT_MARGIN); searchInput.setOnPress(new KeyboardEventCallback() {public boolean execute(KeyboardEvent event){ boolean rVal = searchInput.defaultKeyHandling(event);