keystrokes skill issue
This commit is contained in:
parent
f5c3ccee43
commit
235509df1e
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -20,7 +20,7 @@ public class ComboCounter extends RenderModule {
|
||||||
|
|
||||||
public void onEvent(Event e){
|
public void onEvent(Event e){
|
||||||
if(e instanceof EventAttack && isEnabled()){
|
if(e instanceof EventAttack && isEnabled()){
|
||||||
attacked = true;
|
attacked = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,21 +9,21 @@ public class RenderUtils {
|
||||||
|
|
||||||
switch (asdf.getValue()) {
|
switch (asdf.getValue()) {
|
||||||
case "Red":
|
case "Red":
|
||||||
return new Color(255, 0, 0, 95).getRGB();
|
return new Color(255, 0, 0, 140).getRGB();
|
||||||
case "Yellow":
|
case "Yellow":
|
||||||
return new Color(255, 255, 0, 95).getRGB();
|
return new Color(255, 255, 0, 140).getRGB();
|
||||||
case "Green":
|
case "Green":
|
||||||
return new Color(0, 255, 0, 95).getRGB();
|
return new Color(0, 255, 0, 140).getRGB();
|
||||||
case "Blue":
|
case "Blue":
|
||||||
return new Color(0, 0, 255, 95).getRGB();
|
return new Color(0, 0, 255, 140).getRGB();
|
||||||
case "Orange":
|
case "Orange":
|
||||||
return new Color(255, 165, 0, 95).getRGB();
|
return new Color(255, 165, 0, 140).getRGB();
|
||||||
case "Pink":
|
case "Pink":
|
||||||
return new Color(255, 102, 255, 95).getRGB();
|
return new Color(255, 102, 255, 140).getRGB();
|
||||||
case "Black":
|
case "Black":
|
||||||
return new Color(0, 0, 0, 95).getRGB();
|
return new Color(0, 0, 0, 140).getRGB();
|
||||||
case "White":
|
case "White":
|
||||||
return new Color(255, 255, 255, 95).getRGB();
|
return new Color(255, 255, 255, 140).getRGB();
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user