Skip to content

Commit

Permalink
start/end message are not technically required for events
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Oct 6, 2024
1 parent 50722b1 commit a5d16b7
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,7 @@ export class EventsEditorComponent
public canSave = computed(() => {
const data = this.editing();
return (
data.name &&
data.description &&
data.rarity &&
data.startMessage &&
data.endMessage &&
this.satisfiesUnique()
data.name && data.description && data.rarity && this.satisfiesUnique()
);
});

Expand Down

0 comments on commit a5d16b7

Please sign in to comment.