Skip to content

Commit

Permalink
order does matter
Browse files Browse the repository at this point in the history
  • Loading branch information
zlainsama committed Feb 10, 2019
1 parent 49760e8 commit d7ae409
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {

apply plugin: 'forge'

version = "1.7.10-v9"
version = "1.7.10-v9a"
group= "lain.mods.skinport"
archivesBaseName = "SkinPort"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ public V remove(Side side, K key, Optional<K> key2)

}

private static final int _defaultFlags = of(values());

public static final SidedOptionalTupleKeyMap<UUID, Integer> Flags = new SidedOptionalTupleKeyMap<>();
public static int ClientFlags = getDefaultFlags();

private static final int _defaultFlags = of(values());

public static boolean contains(int flags, SkinCustomization... parts)
{
return (flags & of(parts)) != 0;
Expand Down

0 comments on commit d7ae409

Please sign in to comment.