removed references to hy from the docs

This commit is contained in:
troido 2018-04-14 18:21:16 +02:00
parent b085112ee3
commit 7c28a503b9
3 changed files with 2 additions and 6 deletions

View File

@ -24,8 +24,6 @@ This is a multiplayer ascii farming/fighting game.
Requires python3, tested to work on at least python 3.5.2 in linux
Requires Hy to be installed.
Because of the use of NCURSES, it probably won't work on windows (will be fixed later)
It works on a mac, but when testing abstract domain sockets didn't work.

View File

@ -35,7 +35,7 @@ def main(argv=None):
parser.add_argument('-n', '--name', help='Your player name (must be unique!). Defaults to username on inet sockets and tildename on (unix socket (including abstract)', default=None)
parser.add_argument("-a", "--address", help="The address of the socket. When the socket type is 'abstract' this is just a name. When it is 'unix' this is a filename. When it is 'inet' is should be in the format 'address:port', eg 'localhost:8080'. Defaults depends on the socket type")
parser.add_argument("-s", "--socket", help="the socket type. 'unix' is unix domain sockets, 'abstract' is abstract unix domain sockets and 'inet' is inet sockets. ", choices=["abstract", "unix", "inet"], default="abstract")
parser.add_argument('-k', '--keybindings', help='The script with the keybindings. This file is a snippet of hy script.', default="keybindings")
parser.add_argument('-k', '--keybindings', help='The file with the keybinding configuration. This file is a JSON file.', default="keybindings")
parser.add_argument('-c', '--characters', help='The file with the character mappings for the graphics. If it is either of these names: {} it will be loaded from the charmaps directory.'.format(standardCharFiles), default="default")
parser.add_argument('-o', '--logfile', help='All game messages will be written to this file.'.format(standardCharFiles), default=None)

View File

@ -1,9 +1,7 @@
# Style
Development is done in python3 and hy.
This guide mostly covers python, but when a rule makes sence in hy it should be used there as well
Development is done in python3.
## Syntax