From a84366368f8509485b44e109c775183e8022aefc Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Thu, 24 Apr 2025 09:38:30 -0400 Subject: [PATCH] Docs: Update comment for create_item (#4919) --- docs/world api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/world api.md b/docs/world api.md index e55d4fb9..013b02cc 100644 --- a/docs/world api.md +++ b/docs/world api.md @@ -561,7 +561,7 @@ from .items import is_progression # this is just a dummy def create_item(self, item: str) -> MyGameItem: - # this is called when AP wants to create an item by name (for plando) or when you call it from your own code + # this is called when AP wants to create an item by name (for plando, start inventory, item links) or when you call it from your own code classification = ItemClassification.progression if is_progression(item) else ItemClassification.filler return MyGameItem(item, classification, self.item_name_to_id[item], self.player)