Skip to content

Commit

Permalink
Fix Nexto-EZ (#315)
Browse files Browse the repository at this point in the history
* Update requirements.txt

* Fix Nexto EZ

* Update gui.py
  • Loading branch information
VirxEC authored Oct 18, 2023
1 parent 74598dc commit 4eff344
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions RLBotPack/Necto/Nexto_EZ/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from rlbot.botmanager.helper_process_request import HelperProcessRequest
from rlbot.utils.structures.game_data_struct import GameTickPacket

from shared_memory import shared_memory
from multiprocessing import shared_memory
import sys
import os

Expand Down Expand Up @@ -40,4 +40,4 @@ def get_helper_process_request(self):
if SHOW_GUI:
return HelperProcessRequest(str(Path(__file__).parent / "gui.py"), "nexto-ez", options={
"shared_memory_name": self.shared_memory.name,
})
})
2 changes: 1 addition & 1 deletion RLBotPack/Necto/Nexto_EZ/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from rlbot.utils.logging_utils import get_logger

from pathlib import Path
from shared_memory import shared_memory
from multiprocessing import shared_memory
import tkinter as tk
from tkinter import ttk

Expand Down
1 change: 0 additions & 1 deletion RLBotPack/Necto/Nexto_EZ/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ rlbot==1.*
torch==2.0.1+cpu
rlgym-compat==1.0.2
numpy
shared-memory38

# This will cause pip to auto-upgrade and stop scaring people with warning messages
pip

0 comments on commit 4eff344

Please sign in to comment.