TO0105 - npruehs/tome-editor GitHub Wiki

"The key type ... of the map type ... is not supported."

Summary

  • Name: MapKeyTypeNotSupported
  • Code: TO0105
  • Category: Model Integrity
  • Severity: Error
  • Since: 0.5

Each custom map type must specify exactly one key type for items it can hold, either a built-in type or a custom type.

Currently, maps using vectors as keys are not supported.

Example

The following steps generate this type of error:

  1. Create a new custom map type using any vector type as key type.

How To Fix

  • Change the key type of the map to a non-vector type.