Remove humor

This commit is contained in:
MareStare 2025-03-04 04:26:14 +00:00
parent e884da9b62
commit d49b252eb1

View file

@ -61,7 +61,6 @@ export class InputHistory {
if (index >= 0) { if (index >= 0) {
this.records.splice(index, 1); this.records.splice(index, 1);
} else if (this.records.length >= maxRecords) { } else if (this.records.length >= maxRecords) {
// Bye-bye, the oldest unused record! 👋 Nopony will miss you 🔪🩸
this.records.pop(); this.records.pop();
} }