boolToBuff method
Implementation
BuffBoolean boolToBuff(bool target, String key) {
BuffBoolean buff = BuffBoolean();
buff.key = key;
buff.value = target;
return buff;
}
BuffBoolean boolToBuff(bool target, String key) {
BuffBoolean buff = BuffBoolean();
buff.key = key;
buff.value = target;
return buff;
}