Milestone

This commit is contained in:
2025-02-16 22:50:39 -07:00
parent 6888b55612
commit 76cb82acd9
9 changed files with 144 additions and 11 deletions

View File

@ -43,7 +43,6 @@ class FlyffEXPCurrentNode(BaseNode):
try:
response = requests.get("http://127.0.0.1:5000/data", timeout=1)
status_code = response.status_code
print(f"[DEBUG] FlyffEXPCurrentNode: HTTP Status Code = {status_code}")
if status_code == 200:
try:
@ -58,7 +57,6 @@ class FlyffEXPCurrentNode(BaseNode):
self.set_name("Flyff - EXP (API Connected)")
new_value = data.get("exp", "N/A")
print(f"[DEBUG] FlyffEXPCurrentNode: exp = {new_value}")
new_value_str = str(new_value)
self.set_property('value', new_value_str)