Skip to content

Commit

Permalink
Fix carpet crash
Browse files Browse the repository at this point in the history
  • Loading branch information
samolego committed Jun 12, 2022
1 parent 91818ff commit 9f465d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public Entity taterzen_by_id(int id) {
}

@ScarpetFunction
public Entity taterzen_by_uuid(UUID uuid) {
return Taterzens.TATERZEN_NPCS.get(uuid);
public Entity taterzen_by_uuid(String uuid) {
return Taterzens.TATERZEN_NPCS.get(UUID.fromString(uuid));
}

@ScarpetFunction
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fabric_version=0.55.2+1.19
forge_version=41.0.1
enable_forge=true
# Mod Properties
mod_version=1.10.2
mod_version=1.10.3
maven_group=org.samo_lego
archives_base_name=taterzens
# Dependencies
Expand Down

0 comments on commit 9f465d7

Please sign in to comment.