Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
themangomago committed Jul 30, 2021
1 parent ef29d46 commit 30a585b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Src/Menu/DevLogViewer.gd
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ func _ready():
#warning-ignore:return_value_discarded
$HTTPRequest.connect("request_completed", self, "requestLogComplete")
$HTTPRequest.request(Global.NB_PLUGIN_CONFIG.devlogUrl)
print(Global.NB_PLUGIN_CONFIG.devlogUrl)

func requestLogComplete(_result, response_code, _headers, body):
if response_code == 200:
Expand Down
2 changes: 1 addition & 1 deletion Src/_Autoloads/Global.gd
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const NB_PLUGIN_CONFIG = {
"gameId": 1492610,
"filePassword": "password",
"magic": "magiccode",
"devlogUrl": "https://raw.githubusercontent.com/NimbleBeasts/NbMoonshot/master/_Org/_logs/Moonshot_"+ str(GAME_VERSION) +".txt"
"devlogUrl": "https://raw.githubusercontent.com/NimbleBeasts/NbMoonshot/master/_Org/_logs/Moonshot_"+ "%0.1f" % GAME_VERSION +".txt"
}

const supportedResolutions = [
Expand Down

0 comments on commit 30a585b

Please sign in to comment.