diff --git a/code/__defines/clothing.dm b/code/__defines/clothing.dm index 8254289cc0..60cdc1a329 100644 --- a/code/__defines/clothing.dm +++ b/code/__defines/clothing.dm @@ -15,6 +15,8 @@ NOTICE: Do not leave trailing commas!!!! #define POCKET_GENERIC \ /obj/item/pen, \ /obj/item/paper, \ + /obj/item/paperplane, \ + /obj/item/paper_bundle, \ /obj/item/book, \ /obj/item/flashlight, \ /obj/item/storage/fancy/cigarettes, \ diff --git a/code/__defines/ventcrawl.dm b/code/__defines/ventcrawl.dm index c79d674ff4..5725d5d4d6 100644 --- a/code/__defines/ventcrawl.dm +++ b/code/__defines/ventcrawl.dm @@ -21,6 +21,8 @@ /obj/item/toy, \ /obj/item/clipboard, \ /obj/item/paper, \ + /obj/item/paperplane, \ + /obj/item/paper_bundle, \ /obj/item/pen, \ /obj/item/canvas, \ /obj/item/paint_palette, \ diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index 762ae060b6..a75bf083ce 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -331,6 +331,7 @@ GLOBAL_LIST_INIT(edible_trash, list(/obj/item/broken_device, /obj/item/newspaper, /obj/item/paper, /obj/item/paperplane, + /obj/item/paper_bundle, /obj/item/pen, /obj/item/photo, /obj/item/reagent_containers/food, @@ -1237,6 +1238,7 @@ GLOBAL_LIST_INIT(area_or_turf_fail_types, typecacheof(list( #define SECURITY_GRIPPER \ /obj/item/paper, \ + /obj/item/paperplane, \ /obj/item/paper_bundle, \ /obj/item/pen, \ /obj/item/sample, \ @@ -1248,6 +1250,7 @@ GLOBAL_LIST_INIT(area_or_turf_fail_types, typecacheof(list( #define PAPERWORK_GRIPPER \ /obj/item/clipboard, \ /obj/item/paper, \ + /obj/item/paperplane, \ /obj/item/paper_bundle, \ /obj/item/card/id, \ /obj/item/book, \ @@ -1333,6 +1336,8 @@ GLOBAL_LIST_INIT(area_or_turf_fail_types, typecacheof(list( /obj/item/pen, \ /obj/item/leash, \ /obj/item/paper, \ + /obj/item/paperplane, \ + /obj/item/paper_bundle, \ /obj/item/a_gift, \ /obj/item/remote_scene_tool, \ diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index e4f3e074f4..f6e2fd3437 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -539,6 +539,7 @@ /obj/item/depth_scanner, /obj/item/camera, /obj/item/paper, + /obj/item/paper_bundle, /obj/item/photo, /obj/item/folder, /obj/item/pen, @@ -723,6 +724,7 @@ /obj/item/pickaxe, /obj/item/shovel, /obj/item/paper, + /obj/item/paper_bundle, /obj/item/photo, /obj/item/folder, /obj/item/pen, @@ -765,6 +767,7 @@ /obj/item/cell/device, /obj/item/pickaxe, /obj/item/paper, + /obj/item/paper_bundle, /obj/item/photo, /obj/item/folder, /obj/item/pen,