Skip to content

Commit 89c8210

Browse files
committed
some leftover files
1 parent b7c0ded commit 89c8210

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

stories/anything/npcs/npc_defs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def do_idle_action(self, ctx: Context) -> None:
2424
self.idle_action()
2525

2626
def do_attack(self, target: Living) -> None:
27-
self.start_attack(victim=target)
27+
self.start_attack(defender=target)
2828

2929
class RoamingMob(StationaryMob):
3030

stories/anything/story.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Story(DynamicStory):
1818

1919
config = StoryConfig()
2020
config.name = "The Land of Anything"
21-
config.author = "Rickard Edén, neph1@github.com"
21+
config.author = "Rickard Edén, github.com/neph1"
2222
config.author_address = "[email protected]"
2323
config.version = tale.__version__
2424
config.supported_modes = {GameMode.IF}
@@ -33,6 +33,7 @@ class Story(DynamicStory):
3333
config.startlocation_wizard = "start_zone.transit"
3434
config.zones = ["start_zone"]
3535
config.context = ""
36+
config.savegames_enabled = False
3637

3738
def init(self, driver: Driver) -> None:
3839
"""Called by the game driver when it is done with its initial initialization."""

0 commit comments

Comments
 (0)