Skip to content
This repository has been archived by the owner on Jun 20, 2021. It is now read-only.

Commit

Permalink
Fix AL score in all flavors
Browse files Browse the repository at this point in the history
  • Loading branch information
ratan12 committed Oct 8, 2016
1 parent 6b57333 commit 5d42a87
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Atarashii/src/Beta/java/net/somethingdreadful/MAL/Theme.java
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,9 @@ public static int getRawScore(String score) {
case 3:
switch (score) {
case ":(":
return 33;
return 30;
case ":|":
return 67;
return 60;
case ":)":
return 100;
default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,9 @@ public static int getRawScore(String score) {
case 3:
switch (score) {
case ":(":
return 33;
return 30;
case ":|":
return 67;
return 60;
case ":)":
return 100;
default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,9 @@ public static int getRawScore(String score) {
case 3:
switch (score) {
case ":(":
return 33;
return 30;
case ":|":
return 67;
return 60;
case ":)":
return 100;
default:
Expand Down

0 comments on commit 5d42a87

Please sign in to comment.