update list, add id-id interactions

This commit is contained in:
muskit
2022-12-09 01:57:38 -08:00
parent 2a5ee3aa46
commit 114ad8fc91
4 changed files with 12 additions and 4 deletions
+8
View File
@@ -40,6 +40,14 @@ KyoKanek0 1545552756773208066
AiaAmare 1545562635650957312 AiaAmare 1545562635650957312
RenZott0 1546328834559340544 RenZott0 1546328834559340544
# --- [XSOLEIL] ---
MelocoKyoran 1589536631324692480
HexHaywire 1589524401170833409
D_Dropscythe 1589531775058968576
ZaionLanZa 1589539582399348738
KotokaTorahime 1591995159901663232
Ver_Vermillion 1589791076709171201
# --- [ALTS] --- # --- [ALTS] ---
3W1W4 1507066475638673422 3W1W4 1507066475638673422
RyuguFinana 1506863869901168642 RyuguFinana 1506863869901168642
+1 -1
View File
@@ -5,7 +5,7 @@
ZEA_Cornelia 1165866976192823297 ZEA_Cornelia 1165866976192823297
Hana_Macchia 1165866977472024576 Hana_Macchia 1165866977472024576
Taka_Radjiman 1165866977715347456 Taka_Radjiman 1165866977715347456
MiyuOttavia 1205742630467801088 # graduated MiyuOttavia 1205742630467801088
RiksaDhirendra 1205743596785127424 RiksaDhirendra 1205743596785127424
Rai_Galilei 1205744131294654466 Rai_Galilei 1205744131294654466
AmiciaMichella 1205744430386315265 AmiciaMichella 1205744430386315265
+2 -2
View File
@@ -162,10 +162,10 @@ class TalentTweet:
if other_id in talent_lists.holo_en or other_id in talent_lists.holo_id: if other_id in talent_lists.holo_en or other_id in talent_lists.holo_id:
return True return True
if self.author_id in talent_lists.holo_id: if self.author_id in talent_lists.holo_id:
if other_id in talent_lists.niji_en: if other_id in talent_lists.niji_en or other_id in talent_lists.niji_exid:
return True return True
if self.author_id in talent_lists.niji_exid: if self.author_id in talent_lists.niji_exid:
if other_id in talent_lists.holo_en: if other_id in talent_lists.holo_en or other_id in talent_lists.holo_id:
return True return True
return False return False
+1 -1
View File
@@ -220,7 +220,7 @@ class TwAPI:
f'{" ".join(mention_usernames)}\n' f'{" ".join(mention_usernames)}\n'
) )
ret += '\n' ret += '\n'
ret += '(this is a misssed tweet)\n' if is_catchup else '' ret += '(this is a missed tweet)\n' if is_catchup else ''
ret += f'{util.ttweet_to_url(ttweet)}' ret += f'{util.ttweet_to_url(ttweet)}'
return ret return ret