Skip to content

Commit

Permalink
bugfix motd
Browse files Browse the repository at this point in the history
  • Loading branch information
Tob1as authored Jul 26, 2023
1 parent 081297d commit 5c151fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mcstatus-httpd.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def do_mcstatus(self):
'list': PLAYER_ONLINE_NAMES
},
'map': java_server_query.map,
'motd': java_server_query.motd
'motd': java_server_query.motd.raw
}

if(MINECRAFT_BEDROCK_SERVER and not MINECRAFT_BEDROCK_SERVER.isspace()):
Expand All @@ -113,7 +113,7 @@ def do_mcstatus(self):
'max': int(bedrock_server_status.players_max)
},
'map': bedrock_server_status.map,
'motd': bedrock_server_status.motd,
'motd': bedrock_server_status.motd.raw,
'gamemode': bedrock_server_status.gamemode
}

Expand Down

0 comments on commit 5c151fb

Please sign in to comment.