Skip to content

Commit

Permalink
Fix most of the issues in TODO list
Browse files Browse the repository at this point in the history
1. Fix death message for lightning
2. Fix most of the tag conversion issues.
  • Loading branch information
maxxie114 committed Apr 13, 2019
1 parent d8574ed commit 38c5b07
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
/*
* TODO Fix unable to convert config tags in: (Player)
* KILL_BY_WEAPON: <Player> got killed by <Attacker> using <WeaponName>
* MOB_ATTACK: <Player> got killed by <Attacker>
* PROJECTILE: <Player> got shot by <Attacker>
* ENTITY_EXPLOSION: <Player> Blew to pieces by <Attacker>
* MOB_ATTACK: <Player> got killed by <Attacker>
* PROJECTILE: <Player> got shot by <Attacker> #DONE
* ENTITY_EXPLOSION: <Player> Blew to pieces by <Attacker> #DONE
*
* TODO Fix unrecognized death cause in LIGHTNING
* TODO Fix unrecognized death cause in LIGHTNING #DONE
*/


Expand Down Expand Up @@ -135,9 +135,6 @@ public String getDeathMessage(DamageCause cause, String playerName) {
case BLOCK_EXPLOSION:
deathMessage = this.conf.getString("BLOCK_EXPLOSION");
break;
case LIGHTNING:
deathMessage = this.conf.getString("LIGHTNING");
break;
case VOID:
deathMessage = this.conf.getString("VOID");
break;
Expand Down

0 comments on commit 38c5b07

Please sign in to comment.