Skip to content

Commit

Permalink
v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DevVladikNT committed Oct 19, 2020
1 parent 38e143d commit c85afef
Show file tree
Hide file tree
Showing 59 changed files with 887 additions and 58 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
minSdkVersion 26
targetSdkVersion 29
versionCode 1
versionName "0.6.1"
versionName "0.6.2"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 3 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".RulesVNT"></activity>
<activity android:name=".MainActivityBJ_h"></activity>
<activity android:name=".MenuBJ_h" />
<activity android:name=".RulesVNT" />
<activity android:name=".RulesRoulette" />
<activity android:name=".RulesBJ" />
<activity android:name=".MenuVNT" />
Expand Down
12 changes: 3 additions & 9 deletions app/src/main/java/vladiknt/blackgame/MainActivityBJ.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ public void newGame() {
str = "drawable/standart" + ((int)(Math.random()*100000)%7 + 1);
break;
case "Anime":
if (PlayerInfo.secretSex)
str = "drawable/anime18_" + ((int)(Math.random()*100000)%22 + 1);
else if (PlayerInfo.secret)
if (PlayerInfo.secret)
str = "drawable/anime_" + ((int)(Math.random()*100000)%14 + 1);
else
str = "drawable/anime" + ((int)(Math.random()*100000)%9 + 1);
Expand All @@ -79,17 +77,13 @@ else if (PlayerInfo.secret)
str = "drawable/boy" + ((int)(Math.random()*100000)%10 + 1);
break;
case "Girls":
if (PlayerInfo.secretSex)
str = "drawable/girl18_" + ((int)(Math.random()*100000)%24 + 1);
else if (PlayerInfo.secret)
if (PlayerInfo.secret)
str = "drawable/girl_" + ((int)(Math.random()*100000)%32 + 1);
else
str = "drawable/girl" + ((int)(Math.random()*100000)%21 + 1);
break;
case "BW":
if (PlayerInfo.secretSex)
str = "drawable/bw18_" + ((int)(Math.random()*100000)%14 + 1);
else if (PlayerInfo.secret)
if (PlayerInfo.secret)
str = "drawable/bw_" + ((int)(Math.random()*100000)%15 + 1);
else
str = "drawable/bw" + ((int)(Math.random()*100000)%10 + 1);
Expand Down
Loading

0 comments on commit c85afef

Please sign in to comment.