Compare commits
2 Commits
84adf1dd89
...
apr_2025
| Author | SHA1 | Date | |
|---|---|---|---|
| 029e8de852 | |||
| ca9af423db |
@@ -219,7 +219,7 @@ class World(object):
|
|||||||
else:
|
else:
|
||||||
if item.name == 'Teleporter':
|
if item.name == 'Teleporter':
|
||||||
from Items import ItemFactory
|
from Items import ItemFactory
|
||||||
print('Cannot assign item %s to location %s, replacing with red rupee.' % (item, location))
|
logging.getLogger('').info('Cannot assign item %s to location %s, replacing with red rupee.' % (item, location))
|
||||||
self.push_item(location, ItemFactory('Rupees (20)', item.player), collect)
|
self.push_item(location, ItemFactory('Rupees (20)', item.player), collect)
|
||||||
else:
|
else:
|
||||||
raise RuntimeError('Cannot assign item %s to location %s.' % (item, location))
|
raise RuntimeError('Cannot assign item %s to location %s.' % (item, location))
|
||||||
|
|||||||
7
pyproject.toml
Normal file
7
pyproject.toml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
[project]
|
||||||
|
name = "alttpr-apr-2025"
|
||||||
|
version = "1.1"
|
||||||
|
description = "April Fools 2025 Festive Randomizer"
|
||||||
|
readme = "README.md"
|
||||||
|
requires-python = ">=3.7"
|
||||||
|
dependencies = []
|
||||||
Reference in New Issue
Block a user