Skip to content

Commit

Permalink
Reverted previous update that destroyed backwards compatibility on ef…
Browse files Browse the repository at this point in the history
…fect flags.
  • Loading branch information
emd4600 committed May 22, 2023
1 parent a4593d6 commit bff4759
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sporemodder/UpdateManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class UpdateManager {
*/
public static final TimeZone TIMEZONE = TimeZone.getTimeZone("UTC");

public final VersionInfo versionInfo = new VersionInfo(2, 1, 31, null);
public final VersionInfo versionInfo = new VersionInfo(2, 1, 32, null);

public static UpdateManager get() {
return MainApp.get().getUpdateManager();
Expand Down
2 changes: 1 addition & 1 deletion src/sporemodder/file/effects/VisualEffect.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class VisualEffect extends EffectComponent {
public static final int FLAG_HARDSTOP = 0x20;
public static final int FLAG_RIGID = 0x40;
public static final int FLAG_EXTENDED_LOD_WEIGHTS = 0x80000;
public static final int FLAGMASK = FLAG_EXTENDED_LOD_WEIGHTS | FLAG_HARDSTOP | FLAG_RIGID;
public static final int FLAGMASK = FLAG_EXTENDED_LOD_WEIGHTS;

public int flags;
public int componentAppFlagsMask;
Expand Down

0 comments on commit bff4759

Please sign in to comment.