File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
# 1.5.8
2
2
3
3
- Fixed not being able to use checkpoints in platformer with all modes platformer enabled
4
+ - Fixed crash when playtesting with ** Force Ghost On** enabled
4
5
- Coins are now collected if you complete a level with 1 attempt practice complete
5
6
6
7
# 1.5.7
Original file line number Diff line number Diff line change @@ -8,11 +8,14 @@ class $modify (PlayerObject)
8
8
{
9
9
void toggleGhostEffect (GhostType p0)
10
10
{
11
- if (Client::GetModuleEnabled (" ghost-on" ))
12
- p0 = GhostType::Enabled;
11
+ if (PlayLayer::get ())
12
+ {
13
+ if (Client::GetModuleEnabled (" ghost-on" ))
14
+ p0 = GhostType::Enabled;
13
15
14
- if (Client::GetModuleEnabled (" ghost-off" ))
15
- p0 = GhostType::Disabled;
16
+ if (Client::GetModuleEnabled (" ghost-off" ))
17
+ p0 = GhostType::Disabled;
18
+ }
16
19
17
20
PlayerObject::toggleGhostEffect (p0);
18
21
}
You can’t perform that action at this time.
0 commit comments