diff --git a/data/plugins/consumables/consumable.rb b/data/plugins/consumables/consumable.rb index dacfa5e0..a0748d4f 100644 --- a/data/plugins/consumables/consumable.rb +++ b/data/plugins/consumables/consumable.rb @@ -63,7 +63,7 @@ class ConsumeAction < Action end def equals(other) - mob == other.mob && @consumable.type == other.consumable.type + get_class == other.get_class && mob == other.mob && @consumable.type == other.consumable.type end end