Skip to content

Commit

Permalink
Removes --hide-fog, --hillheight, --worldsize, & --maxtrees.
Browse files Browse the repository at this point in the history
  • Loading branch information
BertrandBordage committed Apr 11, 2013
1 parent cc1de58 commit 98d7747
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,15 +194,11 @@ def main(options):
display_group.add_argument("--width", type=int, default=850, help="Set the window width.")
display_group.add_argument("--height", type=int, default=480, help="Set the window height.")
display_group.add_argument("--show-gui", action="store_true", default=True, help="Enabled by default.")
display_group.add_argument("--hide-fog", action="store_true", default=False, help="Hides the fog, see the whole landscape.")
display_group.add_argument("--draw-distance", choices=['short', 'medium', 'long'], default='short', help=" How far to draw the map. Choose short, medium or long.")
display_group.add_argument("--fullscreen", action="store_true", default=False, help="Runs the game in fullscreen. Press 'Q' to exit the game.")

game_group = parser.add_argument_group('Game options')
game_group.add_argument("--terrain", choices=terrain_options.keys(), help="Different terrains. Choose grass, island, mountains,desert, plains")
game_group.add_argument("--hillheight", type=int, help="How high the hills are.")
game_group.add_argument("--worldsize", type=int, help="The width size of the world.")
game_group.add_argument("--maxtrees", type=int, help="How many trees and cacti should be made.")
game_group.add_argument("--flat", action="store_true", default=False, help="Generate a flat world.")
game_group.add_argument("--fast", action="store_true", default=False, help="Makes time progress faster then normal.")
game_group.add_argument("--game-mode", choices=('survival', 'creative'), default=globals.GAME_MODE, help="Sets the game mode.")
Expand Down

0 comments on commit 98d7747

Please sign in to comment.