Skip to content
This repository was archived by the owner on Apr 27, 2019. It is now read-only.

Commit 5fc3d90

Browse files
committed
Updated README.MD, added version string to logging in server.py. If nothing else crops up, release 1.1.0.
1 parent 0f36ab6 commit 5fc3d90

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This requires Python and pip to install, and on *nix systems the python developm
2323
Create a configuration file using the config.json.example. The most important things to note are owner\_uuid, which should be set to a character's UUID that you possess and have never shared; server\_address and server\_port, which should be set to the proxied server. StarryPy will default to port 21025 for normal clients to connect to. Select a good random port, or set it to 21024 and firewall it off from the outside.
2424

2525
# Run it
26-
Use your terminal (cmd or powershell on windows) and `cd` to the directory you installed StarryPy into. Enter `python server.py` to start the proxy.
26+
After making sure the Starbound server is running, use your terminal (cmd or powershell on windows) and `cd` to the directory you installed StarryPy into. Enter `python server.py` to start the proxy.
2727

2828
# Built-in plugins
2929
StarryPy is nearly entirely plugin driven (our plugin manager is a plugin!), so there are quite a few built-in plugins. The truly important plugins are in the core\_plugins folder. If you remove any of those, it's likely that most other plugins will break. We'll break them down by core plugin and normal plugin classes. If you are looking for the commands, feel free to skip the core plugins section.

server.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import packets
1616
from plugin_manager import PluginManager, route
1717
from utility_functions import build_packet
18-
18+
VERSION = "1.1.0"
1919

2020
class StarryPyServerProtocol(Protocol):
2121
"""
@@ -590,8 +590,7 @@ def buildProtocol(self, address):
590590
logger.addHandler(sh)
591591
logger.addHandler(fh_d)
592592
logger.addHandler(fh_w)
593-
logger.debug("test")
594-
logger.info("Started server.")
593+
logger.info("Started StarryPy server version %s" % VERSION)
595594

596595
factory = StarryPyServerFactory()
597596
reactor.listenTCP(factory.config.bind_port, factory)

0 commit comments

Comments
 (0)