Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better Stories System #6639

Merged
merged 18 commits into from
Jan 17, 2021
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Monika After Story/game/event-handler.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ init 6 python:
"""
Context manager wrapper for Event objects via event labels.
This has handling for when an eventlabel doesn't return an actual
event object via mas_getEV.
event object via mas_getEV.

Use as follows:
with MASev('some event label') as ev:
Expand All @@ -401,7 +401,7 @@ init 6 python:

property names should be same as used on Event object.
functions can also be used.
additionally, the resulting context object can be compared with
additionally, the resulting context object can be compared with
other event objects like normal.

In cases where the Event does not exist, the following occurs:
Expand Down Expand Up @@ -457,7 +457,7 @@ init 6 python:

def __getattr__(self, name):
if self._ev is None:

# event props
if name in MAS_EVL._default_values:
return MAS_EVL._default_values.get(name)
Expand Down
Loading