mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
Undertale: Bug fix pr (#1937)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
|
@@ -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.
@@ -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?
|
||||
|
||||
|
Reference in New Issue
Block a user