Change "I killed Tim." to "I killed Martin." (#291)

This commit is contained in:
Business Goose 2021-04-04 23:23:25 +01:00 committed by GitHub
parent 0e6db230d4
commit e55536472f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ public final class CommandEnchantAll implements CommandExecutor {
for (Enchantment enchantment : Enchantment.values()) { for (Enchantment enchantment : Enchantment.values()) {
item.addUnsafeEnchantment(enchantment, Short.MAX_VALUE); item.addUnsafeEnchantment(enchantment, Short.MAX_VALUE);
} }
player.sendMessage("I killed Tim."); player.sendMessage("I killed Martin.");
} }
} }
return true; return true;