Skip to content

Commit

Permalink
Host: Include build number in server info
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 3, 2012
1 parent b6f04c2 commit b612d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/host/doomsday-host
Expand Up @@ -213,7 +213,7 @@ class State:
cfgFn = homeFile('server%i.cfg' % sv.port)
cfgFile = file(cfgFn, 'wt')
print >> cfgFile, 'server-name "%s"' % sv.name
print >> cfgFile, 'server-info "%s"' % sv.info
print >> cfgFile, 'server-info "[#%s] %s"' % (todaysBuild(), sv.info)
print >> cfgFile, 'net-ip-port %i' % sv.port
cfgFile.close()

Expand Down

0 comments on commit b612d4e

Please sign in to comment.