From 8d0f1be791e04f5bc270d1ed0299ce130d630aa4 Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Mon, 28 Oct 2024 22:25:07 +0100 Subject: [PATCH] Update world api.md --- 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 d28844da41..8a5b898917 100644 --- a/docs/world api.md +++ b/docs/world api.md @@ -751,7 +751,7 @@ def remove(self, state: CollectionState, item: Item) -> bool: return change ``` -Using LogicMixin can slow down your code by a lot if you don't use it intelligently. This is because `collect` +Using LogicMixin can greatly slow down your code if you don't use it intelligently. This is because `collect` and `remove` are called very frequently during fill. If your `collect` & `remove` cause a heavy calculation every time, your code might end up being *slower* than just doing calculations in your access rules.