View Issue Details

IDCategoryLast Update
0001003Bug Report2019-11-12 17:30
ReporterCasiope 
SeveritymajorReproducibilityalways
Status resolvedResolutionfixed
Summary0001003: Code typo in map lock
DescriptionVersion 0.16.1.

Correct me if I'm wrong, but I understand that the school must be locked during the evening and the night. But if MC has the master key, he can access the school and have fun with the teachers.

I found a bug (MC cannot access School at night with the master key) and took a look at the code to have a confirmation in script locations\map\map_lock_check, line 35:

elif game.timer.is_night() and ((not player.has_item("master_key") and destination_screen == "School") or destination_screen not in ["Home", "Beach House", "Smith"]):
->
elif game.timer.is_night() and ((not player.has_item("master_key") and destination_screen == "School") or destination_screen not in [*School*, "Home", "Beach House", "Smith"]):
Platform/OSWindows
Version0.16

Relationships

related to 0001999 resolved Dilemma - Need to Break into School with Erik but Says I need Key but Already Have Key 

Activities

Casiope

Casiope

2018-08-27 15:00

updater   ~0001102

elif game.timer.is_night() and not player.has_item("master_key" or destination_screen not in [*School*, "Home", "Beach House", "Smith"]):

should do the job.
Casiope

Casiope

2018-08-27 15:16

updater   ~0001103

That doesn't explain why MC needs Erik to sneak into the school at night if he has the master key...

I think I'm overestimating the details in this game. :)
Casiope

Casiope

2019-05-06 14:25

updater   ~0002442

Still in version 0.18.2.
Casiope

Casiope

2019-11-12 17:29

updater   ~0003613

This bug has been fixed in version 0.19. The report is now closed.

Issue History

Date Modified Username Field Change
2018-08-27 14:52 Casiope New Issue
2018-08-27 15:00 Casiope Note Added: 0001102
2018-08-27 15:16 Casiope Note Added: 0001103
2019-05-06 14:25 Casiope Note Added: 0002442
2019-11-12 17:29 Casiope Status new => resolved
2019-11-12 17:29 Casiope Resolution open => fixed
2019-11-12 17:29 Casiope Note Added: 0003613
2019-11-12 17:30 Casiope Relationship added related to 0001999