Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverSchlueter committed Nov 22, 2024
1 parent 02363ab commit 112f70d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/main/java/de/oliver/fancynpcs/api/NpcAttribute.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public class NpcAttribute {
private final List<EntityType> types;
private final BiConsumer<Npc, String> applyFunc; // npc, value

public NpcAttribute(String name, List<String> possbileValues, List<EntityType> types, BiConsumer<Npc, String> applyFunc) {
public NpcAttribute(String name, List<String> possibleValues, List<EntityType> types, BiConsumer<Npc, String> applyFunc) {
this.name = name;
this.possibleValues = possbileValues;
this.possibleValues = possibleValues;
this.types = types;
this.applyFunc = applyFunc;
}
Expand Down

0 comments on commit 112f70d

Please sign in to comment.