| 4157 | extern std::stack<ASContext*> active_context_stack; |
| 4158 | static void ItemObjectError(int which) __attribute__((noreturn)); |
| 4159 | static void ItemObjectError(int which) { |
| 4160 | std::string callstack = active_context_stack.top()->GetCallstack(); |
| 4161 | FatalError("Error", "There is no item object %d.\n Called from: %s\n", callstack.c_str(), which); |
| 4162 | } |
| 4163 | |
| 4164 | void MovementObject::AttachItemToSlotAttachmentRef(int which, AttachmentType type, bool mirrored, const AttachmentRef* ref, bool from_socket) { |
| 4165 | Online* online = Online::Instance(); |
no test coverage detected