Fix typo in Equipment tutorial

This commit is contained in:
Griatch 2023-07-26 23:08:16 +02:00
parent 1c8337ff69
commit 0acfbe82b4

View file

@ -216,7 +216,7 @@ class EquipmentHandler:
size = obj.size
max_slots = self.max_slots
current_slot_usage = self.count_slots()
return current_slot_usage + size <= max_slots:
return current_slot_usage + size <= max_slots
```