File size: 53,639 Bytes
06508e7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 |
{
"post": {
"STR_FIELD": "id",
"add_fetch_param": "<bound method Submission.add_fetch_param of Submission(id='1gp1kln')>",
"all_awardings": [],
"allow_live_comments": false,
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"author": "somebody5833863",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_1a7ry977s1",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Submission(id='1gp1kln')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"can_gild": false,
"can_mod_post": false,
"category": null,
"clear_vote": "<bound method VotableMixin.clear_vote of Submission(id='1gp1kln')>",
"clicked": false,
"comment_limit": 2048,
"comment_sort": "confidence",
"comments": "<praw.models.comment_forest.CommentForest object at 0x769a89e963b0>",
"content_categories": null,
"contest_mode": false,
"created": 1731355289.0,
"created_utc": 1731355289.0,
"crosspost": "<bound method Submission.crosspost of Submission(id='1gp1kln')>",
"delete": "<bound method EditableMixin.delete of Submission(id='1gp1kln')>",
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Submission(id='1gp1kln')>",
"discussion_type": null,
"distinguished": null,
"domain": "i.redd.it",
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Submission(id='1gp1kln')>",
"duplicates": "<bound method SubmissionListingMixin.duplicates of Submission(id='1gp1kln')>",
"edit": "<bound method EditableMixin.edit of Submission(id='1gp1kln')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Submission(id='1gp1kln')>",
"flair": "<praw.models.reddit.submission.SubmissionFlair object at 0x769a89909e40>",
"fullname": "t3_1gp1kln",
"gild": "<bound method GildableMixin.gild of Submission(id='1gp1kln')>",
"gilded": 0,
"gildings": {},
"hidden": false,
"hide": "<bound method Submission.hide of Submission(id='1gp1kln')>",
"hide_score": false,
"id": "1gp1kln",
"id_from_url": "<function Submission.id_from_url at 0x769a8d396680>",
"is_created_from_ads_ui": false,
"is_crosspostable": true,
"is_meta": false,
"is_original_content": false,
"is_reddit_media_domain": true,
"is_robot_indexable": true,
"is_self": false,
"is_video": false,
"likes": null,
"link_flair_background_color": "#551a8b",
"link_flair_css_class": "seven",
"link_flair_richtext": [
{
"e": "text",
"t": "Question"
}
],
"link_flair_template_id": "017de8dc-c101-11e8-8121-0e0c6c1f9abc",
"link_flair_text": "Question",
"link_flair_text_color": "light",
"link_flair_type": "richtext",
"locked": false,
"mark_visited": "<bound method Submission.mark_visited of Submission(id='1gp1kln')>",
"media": null,
"media_embed": {},
"media_only": false,
"mod": "<praw.models.reddit.submission.SubmissionModeration object at 0x769a89909fc0>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t3_1gp1kln",
"no_follow": true,
"num_comments": 8,
"num_crossposts": 0,
"num_reports": null,
"over_18": false,
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.submission.Submission'>>",
"permalink": "/r/reddeadredemption/comments/1gp1kln/why_isnt_new_austin_explored_in_red_dead/",
"pinned": false,
"post_hint": "image",
"preview": {
"images": [
{
"source": {
"url": "https://preview.redd.it/j7vr0hb6wb0e1.png?auto=webp&s=901b614ad8374b69fd4489fbcf9b3022c3c6e461",
"width": 720,
"height": 722
},
"resolutions": [
{
"url": "https://preview.redd.it/j7vr0hb6wb0e1.png?width=108&crop=smart&auto=webp&s=c38a479c96afe054a8a813405a124374807ff16d",
"width": 108,
"height": 108
},
{
"url": "https://preview.redd.it/j7vr0hb6wb0e1.png?width=216&crop=smart&auto=webp&s=7257056c947db38004381810d9c97d6dde57ab6a",
"width": 216,
"height": 216
},
{
"url": "https://preview.redd.it/j7vr0hb6wb0e1.png?width=320&crop=smart&auto=webp&s=07226c6147f78c659d9b2d89f158b85d08c3db51",
"width": 320,
"height": 320
},
{
"url": "https://preview.redd.it/j7vr0hb6wb0e1.png?width=640&crop=smart&auto=webp&s=e63b962021a5af272303ad2e4c9efe867dbaac7b",
"width": 640,
"height": 641
}
],
"variants": {},
"id": "4IajIYTmt_AxHSJWIHiurrHreNkj-Pkg9odJMdY8Xek"
}
],
"enabled": true
},
"pwls": 6,
"quarantine": false,
"removal_reason": null,
"removed_by": null,
"removed_by_category": null,
"reply": "<bound method ReplyableMixin.reply of Submission(id='1gp1kln')>",
"report": "<bound method ReportableMixin.report of Submission(id='1gp1kln')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Submission(id='1gp1kln')>",
"saved": false,
"score": 0,
"secure_media": null,
"secure_media_embed": {},
"selftext": "I finished the game without ever stepping foot in Armadillo. Is there anything to do in New Austin? It feels strange to have such a large part of the map be left so empty. ",
"selftext_html": "<!-- SC_OFF --><div class=\"md\"><p>I finished the game without ever stepping foot in Armadillo. Is there anything to do in New Austin? It feels strange to have such a large part of the map be left so empty. </p>\n</div><!-- SC_ON -->",
"send_replies": true,
"shortlink": "https://redd.it/1gp1kln",
"spoiler": false,
"stickied": false,
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_subscribers": 2030270,
"subreddit_type": "public",
"suggested_sort": "top",
"thumbnail": "https://b.thumbs.redditmedia.com/QM8tGJhFAh3tXVvmENYkztedwFIThUwSBLZYhv3vMyI.jpg",
"thumbnail_height": 140,
"thumbnail_width": 140,
"title": "Why isn\u2019t New Austin explored in Red Dead Redemption 2? ",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unhide": "<bound method Submission.unhide of Submission(id='1gp1kln')>",
"unsave": "<bound method SavableMixin.unsave of Submission(id='1gp1kln')>",
"ups": 0,
"upvote": "<bound method VotableMixin.upvote of Submission(id='1gp1kln')>",
"upvote_ratio": 0.25,
"url": "https://i.redd.it/j7vr0hb6wb0e1.png",
"url_overridden_by_dest": "https://i.redd.it/j7vr0hb6wb0e1.png",
"user_reports": [],
"view_count": null,
"visited": false,
"wls": 6,
"created_date": "2024-11-11",
"full_link": "https://www.reddit.com/r/reddeadredemption/comments/1gp1kln/why_isnt_new_austin_explored_in_red_dead/"
},
"comments": [
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "VioletCapra",
"author_flair_background_color": "transparent",
"author_flair_css_class": null,
"author_flair_richtext": [
{
"a": ":charles_smith:",
"u": "https://emoji.redditmedia.com/ejkcpp9vq5t11_t5_2rn7o/charles_smith",
"e": "emoji"
},
{
"e": "text",
"t": " Charles Smith"
}
],
"author_flair_template_id": "0efcd7dc-b523-11e8-8ade-0ed21f7353d4",
"author_flair_text": ":charles_smith: Charles Smith",
"author_flair_text_color": "dark",
"author_flair_type": "richtext",
"author_fullname": "t2_161hniivxc",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lwmw5w7')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lwmw5w7')>",
"body": "Originally it was planned to have lots of main story content in New Austin but Rockstar couldn\u2019t finish it in time. I remember in chapter 3 I was like \u201cI can\u2019t wait to see the gang\u2019s camp in the desert\u201d and by the end I was like \u201cwe never go there? Damn.\u201d",
"body_html": "<div class=\"md\"><p>Originally it was planned to have lots of main story content in New Austin but Rockstar couldn\u2019t finish it in time. I remember in chapter 3 I was like \u201cI can\u2019t wait to see the gang\u2019s camp in the desert\u201d and by the end I was like \u201cwe never go there? Damn.\u201d</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lwmw5w7')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lwmw5w7')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731356318.0,
"created_utc": 1731356318.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lwmw5w7')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lwmw5w7')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lwmw5w7')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lwmw5w7')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lwmw5w7')>",
"fullname": "t1_lwmw5w7",
"gild": "<bound method GildableMixin.gild of Comment(id='lwmw5w7')>",
"gilded": 0,
"gildings": {},
"id": "lwmw5w7",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gp1kln",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lwmw5w7')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lwmw5w7')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a8990a080>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lwmw5w7",
"no_follow": false,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lwmw5w7')>",
"parent_id": "t3_1gp1kln",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gp1kln/why_isnt_new_austin_explored_in_red_dead/lwmw5w7/",
"refresh": "<bound method Comment.refresh of Comment(id='lwmw5w7')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89e97e20>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lwmw5w7')>",
"report": "<bound method ReportableMixin.report of Comment(id='lwmw5w7')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lwmw5w7')>",
"saved": false,
"score": 4,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gp1kln",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lwmw5w7')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lwmw5w7')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lwmw5w7')>",
"ups": 4,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lwmw5w7')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "bugmultiverse",
"author_flair_background_color": "transparent",
"author_flair_css_class": null,
"author_flair_richtext": [
{
"a": ":john_marston:",
"u": "https://emoji.redditmedia.com/0zuykkevq5t11_t5_2rn7o/john_marston",
"e": "emoji"
},
{
"e": "text",
"t": " John Marston"
}
],
"author_flair_template_id": "1631783c-b523-11e8-93fe-0ecde4b36d2c",
"author_flair_text": ":john_marston: John Marston",
"author_flair_text_color": "dark",
"author_flair_type": "richtext",
"author_fullname": "t2_9sk9sw03",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lwmv3ef')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lwmv3ef')>",
"body": "Mostly fan service and rd online.\n\nPlus it was supposed to be part of the 1899 story that got cut, technically it\u2019s the 1899 new Austin map reused for 1907",
"body_html": "<div class=\"md\"><p>Mostly fan service and rd online.</p>\n\n<p>Plus it was supposed to be part of the 1899 story that got cut, technically it\u2019s the 1899 new Austin map reused for 1907</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lwmv3ef')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lwmv3ef')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731355989.0,
"created_utc": 1731355989.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lwmv3ef')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lwmv3ef')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lwmv3ef')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lwmv3ef')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lwmv3ef')>",
"fullname": "t1_lwmv3ef",
"gild": "<bound method GildableMixin.gild of Comment(id='lwmv3ef')>",
"gilded": 0,
"gildings": {},
"id": "lwmv3ef",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gp1kln",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lwmv3ef')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lwmv3ef')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a899ead70>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lwmv3ef",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lwmv3ef')>",
"parent_id": "t3_1gp1kln",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gp1kln/why_isnt_new_austin_explored_in_red_dead/lwmv3ef/",
"refresh": "<bound method Comment.refresh of Comment(id='lwmv3ef')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89e96fe0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lwmv3ef')>",
"report": "<bound method ReportableMixin.report of Comment(id='lwmv3ef')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lwmv3ef')>",
"saved": false,
"score": 3,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gp1kln",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lwmv3ef')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lwmv3ef')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lwmv3ef')>",
"ups": 3,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lwmv3ef')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "-snickerss-",
"author_flair_background_color": "transparent",
"author_flair_css_class": null,
"author_flair_richtext": [
{
"a": ":hosea_matthews:",
"u": "https://emoji.redditmedia.com/inbabr8vq5t11_t5_2rn7o/hosea_matthews",
"e": "emoji"
},
{
"e": "text",
"t": " Hosea Matthews"
}
],
"author_flair_template_id": "009ec18c-b523-11e8-a0dd-0ef63ea61dac",
"author_flair_text": ":hosea_matthews: Hosea Matthews",
"author_flair_text_color": "dark",
"author_flair_type": "richtext",
"author_fullname": "t2_jaexd2t5",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lwmvcfu')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lwmvcfu')>",
"body": "There are dinosaur bones, legendary animals, treasures and some herbs that are only available in New Austin which will allow you to complete the herbalist challenges. In RDR2, New Austin is mostly a wasteland.",
"body_html": "<div class=\"md\"><p>There are dinosaur bones, legendary animals, treasures and some herbs that are only available in New Austin which will allow you to complete the herbalist challenges. In RDR2, New Austin is mostly a wasteland.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lwmvcfu')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lwmvcfu')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731356066.0,
"created_utc": 1731356066.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lwmvcfu')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lwmvcfu')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lwmvcfu')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lwmvcfu')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lwmvcfu')>",
"fullname": "t1_lwmvcfu",
"gild": "<bound method GildableMixin.gild of Comment(id='lwmvcfu')>",
"gilded": 0,
"gildings": {},
"id": "lwmvcfu",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gp1kln",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lwmvcfu')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lwmvcfu')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a899e81c0>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lwmvcfu",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lwmvcfu')>",
"parent_id": "t3_1gp1kln",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gp1kln/why_isnt_new_austin_explored_in_red_dead/lwmvcfu/",
"refresh": "<bound method Comment.refresh of Comment(id='lwmvcfu')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89e96260>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lwmvcfu')>",
"report": "<bound method ReportableMixin.report of Comment(id='lwmvcfu')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lwmvcfu')>",
"saved": false,
"score": 3,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gp1kln",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lwmvcfu')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lwmvcfu')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lwmvcfu')>",
"ups": 3,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lwmvcfu')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "ReallyGoodAvocado",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_lk73egbhm",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lwmu88k')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lwmu88k')>",
"body": "It doesn\u2019t sound like you finished the game.",
"body_html": "<div class=\"md\"><p>It doesn\u2019t sound like you finished the game.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lwmu88k')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lwmu88k')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731355725.0,
"created_utc": 1731355725.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lwmu88k')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lwmu88k')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lwmu88k')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lwmu88k')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lwmu88k')>",
"fullname": "t1_lwmu88k",
"gild": "<bound method GildableMixin.gild of Comment(id='lwmu88k')>",
"gilded": 0,
"gildings": {},
"id": "lwmu88k",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gp1kln",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lwmu88k')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lwmu88k')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a899eb100>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lwmu88k",
"no_follow": false,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lwmu88k')>",
"parent_id": "t3_1gp1kln",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gp1kln/why_isnt_new_austin_explored_in_red_dead/lwmu88k/",
"refresh": "<bound method Comment.refresh of Comment(id='lwmu88k')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89e968f0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lwmu88k')>",
"report": "<bound method ReportableMixin.report of Comment(id='lwmu88k')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lwmu88k')>",
"saved": false,
"score": 5,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gp1kln",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lwmu88k')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lwmu88k')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lwmu88k')>",
"ups": 5,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lwmu88k')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Christhemanic",
"author_flair_background_color": "transparent",
"author_flair_css_class": null,
"author_flair_richtext": [
{
"a": ":bill_williamson:",
"u": "https://emoji.redditmedia.com/u0o7id2vq5t11_t5_2rn7o/bill_williamson",
"e": "emoji"
},
{
"e": "text",
"t": " Bill Williamson"
}
],
"author_flair_template_id": "1169f7de-b523-11e8-b76b-0ea069f53b0e",
"author_flair_text": ":bill_williamson: Bill Williamson",
"author_flair_text_color": "dark",
"author_flair_type": "richtext",
"author_fullname": "t2_u5ybkfv7",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lwo4ido')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lwo4ido')>",
"body": "Cut content sadly. There\u2019s still tons of content here tho. Rockstar isn\u2019t really a fan of reusing their old maps too much",
"body_html": "<div class=\"md\"><p>Cut content sadly. There\u2019s still tons of content here tho. Rockstar isn\u2019t really a fan of reusing their old maps too much</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lwo4ido')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lwo4ido')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731370650.0,
"created_utc": 1731370650.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lwo4ido')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lwo4ido')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lwo4ido')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lwo4ido')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lwo4ido')>",
"fullname": "t1_lwo4ido",
"gild": "<bound method GildableMixin.gild of Comment(id='lwo4ido')>",
"gilded": 0,
"gildings": {},
"id": "lwo4ido",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gp1kln",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lwo4ido')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lwo4ido')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a899e8e50>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lwo4ido",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lwo4ido')>",
"parent_id": "t3_1gp1kln",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gp1kln/why_isnt_new_austin_explored_in_red_dead/lwo4ido/",
"refresh": "<bound method Comment.refresh of Comment(id='lwo4ido')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89e94790>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lwo4ido')>",
"report": "<bound method ReportableMixin.report of Comment(id='lwo4ido')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lwo4ido')>",
"saved": false,
"score": 2,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gp1kln",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lwo4ido')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lwo4ido')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lwo4ido')>",
"ups": 2,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lwo4ido')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Shady_Love",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_7xzup",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lwmyhcu')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lwmyhcu')>",
"body": "This was literally discussed not even 3 days ago.",
"body_html": "<div class=\"md\"><p>This was literally discussed not even 3 days ago.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lwmyhcu')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lwmyhcu')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731357033.0,
"created_utc": 1731357033.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lwmyhcu')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lwmyhcu')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lwmyhcu')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lwmyhcu')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lwmyhcu')>",
"fullname": "t1_lwmyhcu",
"gild": "<bound method GildableMixin.gild of Comment(id='lwmyhcu')>",
"gilded": 0,
"gildings": {},
"id": "lwmyhcu",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gp1kln",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lwmyhcu')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lwmyhcu')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a899e8070>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lwmyhcu",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lwmyhcu')>",
"parent_id": "t3_1gp1kln",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gp1kln/why_isnt_new_austin_explored_in_red_dead/lwmyhcu/",
"refresh": "<bound method Comment.refresh of Comment(id='lwmyhcu')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89e945e0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lwmyhcu')>",
"report": "<bound method ReportableMixin.report of Comment(id='lwmyhcu')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lwmyhcu')>",
"saved": false,
"score": 1,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gp1kln",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lwmyhcu')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lwmyhcu')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lwmyhcu')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lwmyhcu')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "That-Apricot8657",
"author_flair_background_color": "transparent",
"author_flair_css_class": null,
"author_flair_richtext": [
{
"a": ":arthur_morgan:",
"u": "https://emoji.redditmedia.com/lq6h4e0vq5t11_t5_2rn7o/arthur_morgan",
"e": "emoji"
},
{
"e": "text",
"t": " Arthur Morgan"
}
],
"author_flair_template_id": "3b1198e4-b523-11e8-ac68-0e0243d388b6",
"author_flair_text": ":arthur_morgan: Arthur Morgan",
"author_flair_text_color": "dark",
"author_flair_type": "richtext",
"author_fullname": "t2_llzbswkkq",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lwmv57g')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lwmv57g')>",
"body": "I don\u2019t think you go to Armadillo or any locations in rdr1 except for the obvious ones",
"body_html": "<div class=\"md\"><p>I don\u2019t think you go to Armadillo or any locations in rdr1 except for the obvious ones</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lwmv57g')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lwmv57g')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731356005.0,
"created_utc": 1731356005.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lwmv57g')>",
"depth": 1,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lwmv57g')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lwmv57g')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lwmv57g')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lwmv57g')>",
"fullname": "t1_lwmv57g",
"gild": "<bound method GildableMixin.gild of Comment(id='lwmv57g')>",
"gilded": 0,
"gildings": {},
"id": "lwmv57g",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": false,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gp1kln",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lwmv57g')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lwmv57g')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a899eb6d0>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lwmv57g",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lwmv57g')>",
"parent_id": "t1_lwmu88k",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gp1kln/why_isnt_new_austin_explored_in_red_dead/lwmv57g/",
"refresh": "<bound method Comment.refresh of Comment(id='lwmv57g')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89e964d0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lwmv57g')>",
"report": "<bound method ReportableMixin.report of Comment(id='lwmv57g')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lwmv57g')>",
"saved": false,
"score": 1,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gp1kln",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lwmv57g')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lwmv57g')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lwmv57g')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lwmv57g')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "somebody5833863",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_1a7ry977s1",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lwn3yw2')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lwn3yw2')>",
"body": "Without a doubt, the sub has more than 100 posts per day. Only with a lot of willpower would I find this question here, so I decided to ask :)",
"body_html": "<div class=\"md\"><p>Without a doubt, the sub has more than 100 posts per day. Only with a lot of willpower would I find this question here, so I decided to ask :)</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lwn3yw2')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lwn3yw2')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731358702.0,
"created_utc": 1731358702.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lwn3yw2')>",
"depth": 1,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lwn3yw2')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lwn3yw2')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lwn3yw2')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lwn3yw2')>",
"fullname": "t1_lwn3yw2",
"gild": "<bound method GildableMixin.gild of Comment(id='lwn3yw2')>",
"gilded": 0,
"gildings": {},
"id": "lwn3yw2",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": false,
"is_submitter": true,
"likes": null,
"link_id": "t3_1gp1kln",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lwn3yw2')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lwn3yw2')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a899e8e20>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lwn3yw2",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lwn3yw2')>",
"parent_id": "t1_lwmyhcu",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gp1kln/why_isnt_new_austin_explored_in_red_dead/lwn3yw2/",
"refresh": "<bound method Comment.refresh of Comment(id='lwn3yw2')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a899e8ca0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lwn3yw2')>",
"report": "<bound method ReportableMixin.report of Comment(id='lwn3yw2')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lwn3yw2')>",
"saved": false,
"score": 1,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gp1kln",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lwn3yw2')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lwn3yw2')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lwn3yw2')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lwn3yw2')>",
"user_reports": []
}
]
} |