| 52 | |
| 53 | |
| 54 | bool Database::AddClientToInstance(uint16 instance_id, uint32 character_id) |
| 55 | { |
| 56 | auto e = InstanceListPlayerRepository::NewEntity(); |
| 57 | |
| 58 | e.id = instance_id; |
| 59 | e.charid = character_id; |
| 60 | |
| 61 | return InstanceListPlayerRepository::ReplaceOne(*this, e); |
| 62 | } |
| 63 | |
| 64 | bool Database::CheckInstanceByCharID(uint16 instance_id, uint32 character_id) |
| 65 | { |
no outgoing calls
no test coverage detected