mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
disable time travelers shop for now
This commit is contained in:
parent
c5aef23b43
commit
c6c3f553dc
2 changed files with 9 additions and 9 deletions
|
|
@ -2,8 +2,8 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.habitrpg.android.habitica"
|
||||
android:versionCode="105"
|
||||
android:versionName="0.0.32.1"
|
||||
android:versionCode="106"
|
||||
android:versionName="0.0.33"
|
||||
android:screenOrientation="portrait"
|
||||
android:installLocation="auto" >
|
||||
|
||||
|
|
|
|||
|
|
@ -57,11 +57,11 @@ public class ShopsFragment extends BaseMainFragment {
|
|||
fragment.shopIdentifier = Shop.QUEST_SHOP;
|
||||
break;
|
||||
}
|
||||
//case 2: {
|
||||
// fragment.shopIdentifier = Shop.TIME_TRAVELERS_SHOP;
|
||||
// break;
|
||||
//}
|
||||
case 2: {
|
||||
fragment.shopIdentifier = Shop.TIME_TRAVELERS_SHOP;
|
||||
break;
|
||||
}
|
||||
case 3: {
|
||||
fragment.shopIdentifier = Shop.SEASONAL_SHOP;
|
||||
break;
|
||||
}
|
||||
|
|
@ -73,7 +73,7 @@ public class ShopsFragment extends BaseMainFragment {
|
|||
|
||||
@Override
|
||||
public int getCount() {
|
||||
return 4;
|
||||
return 3;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -83,9 +83,9 @@ public class ShopsFragment extends BaseMainFragment {
|
|||
return activity.getString(R.string.market);
|
||||
case 1:
|
||||
return activity.getString(R.string.quests);
|
||||
//case 2:
|
||||
// return activity.getString(R.string.timeTravelers);
|
||||
case 2:
|
||||
return activity.getString(R.string.timeTravelers);
|
||||
case 3:
|
||||
return activity.getString(R.string.seasonalShop);
|
||||
}
|
||||
return "";
|
||||
|
|
|
|||
Loading…
Reference in a new issue