Project cleanup pre merge.

This commit is contained in:
2023-07-15 09:23:48 -04:00
parent 134b651df8
commit 9bbdef224d
747 changed files with 99704 additions and 101200 deletions
+17 -16
View File
@@ -16,27 +16,28 @@ import engine.objects.PlayerCharacter;
public class GetRuneDropRateCmd extends AbstractDevCmd {
public GetRuneDropRateCmd() {
public GetRuneDropRateCmd() {
super("getrunedroprate");
}
@Override
protected void _doCmd(PlayerCharacter pcSender, String[] words,
AbstractGameObject target) {
if (pcSender == null) return;
@Override
protected void _doCmd(PlayerCharacter pcSender, String[] words,
AbstractGameObject target) {
if (pcSender == null)
return;
String out = "Depracated";
throwbackInfo(pcSender, out);
}
String out = "Depracated";
throwbackInfo(pcSender, out);
}
@Override
protected String _getUsageString() {
return "' /getrunedroprate'";
}
@Override
protected String _getUsageString() {
return "' /getrunedroprate'";
}
@Override
protected String _getHelpString() {
return "lists drop rates for runes and contracts in non-hotzone.";
}
@Override
protected String _getHelpString() {
return "lists drop rates for runes and contracts in non-hotzone.";
}
}