Skip to content

Commit

Permalink
V5.1
Browse files Browse the repository at this point in the history
Fixed small things
  • Loading branch information
helloyanis committed Oct 17, 2023
1 parent f0c3722 commit 380a608
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId = "com.helloyanis.rucoycalculator"
minSdk = 24
targetSdk = 34
versionCode = 8
versionName = "5"
versionCode = 10
versionName = "5.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ class SkullFragment : Fragment() {
_binding = null
}
private fun setalldisplays(string: String){
binding.root.findViewById<TextView>(R.id.whiteskullvalue).text = string
binding.root.findViewById<TextView>(R.id.yellowskullvalue).text = string
binding.root.findViewById<TextView>(R.id.orangeskullvalue).text = string
binding.root.findViewById<TextView>(R.id.redskullvalue).text = string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ class TrainFragment : Fragment() {
alrdealdamage = true
} else if (new_max_damage > 1 && !alrdealdamage && !dealdamage) { //if you cant deal damage to the next mob yet, you can deal damage in a certain amount of stats!
str0 +=
"🔥 You can deal " + new_max_damage.toInt() + " max damage to " + mobs[newpos].mob_name /*+ mobs[newpos].getEmoji_code()*/ + " in " + statadd + " stats!" //part of output
"🔥 You can deal " + new_max_damage.toInt() + " max damage to " + mobs[newpos].mob_name /*+ mobs[newpos].getEmoji_code()*/ + " in " + statadd + " stats!\n" //part of output
dealdamage = true
}
checked = true
Expand Down

0 comments on commit 380a608

Please sign in to comment.