Undertale: Bug fix pr (#1937)

This commit is contained in:
Mewlif
2023-07-04 14:09:17 -04:00
committed by GitHub
parent 153125a5ea
commit 857364fa78
5 changed files with 23 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
from ..generic.Rules import set_rule, add_rule
from worlds.generic.Rules import set_rule, add_rule
from BaseClasses import MultiWorld, CollectionState

View File

@@ -13,12 +13,13 @@ from multiprocessing import Process
def run_client():
print('running undertale client')
from UndertaleClient import main # lazy import
from .UndertaleClient import main # lazy import
p = Process(target=main)
p.start()
components.append(Component("Undertale Client", "UndertaleClient"))
# components.append(Component("Undertale Client", func=run_client))
def data_path(file_name: str):

Binary file not shown.

View File

@@ -13,7 +13,7 @@ the Nicecream bought in Hotland, and anything you cannot get in your chosen rout
## When the player receives an item, what happens?
When the player receives an item in Undertale, it will go into their inventory if they have space, otherwise it will
wait until they do have space. That includes items that don't appear in your inventory.
wait until they do have space.
## What is the victory condition?