diff --git a/code/__defines/clothing.dm b/code/__defines/clothing.dm index 8254289cc0c..60cdc1a3296 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 c79d674ff43..5725d5d4d6c 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 7d6e205d054..dad8a257cd8 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -321,6 +321,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, @@ -1198,6 +1199,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, \ @@ -1209,6 +1211,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, \ @@ -1294,6 +1297,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 d692dde38f4..8cb47693e90 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -535,6 +535,7 @@ /obj/item/depth_scanner, /obj/item/camera, /obj/item/paper, + /obj/item/paper_bundle, /obj/item/photo, /obj/item/folder, /obj/item/pen, @@ -719,6 +720,7 @@ /obj/item/pickaxe, /obj/item/shovel, /obj/item/paper, + /obj/item/paper_bundle, /obj/item/photo, /obj/item/folder, /obj/item/pen, @@ -761,6 +763,7 @@ /obj/item/cell/device, /obj/item/pickaxe, /obj/item/paper, + /obj/item/paper_bundle, /obj/item/photo, /obj/item/folder, /obj/item/pen,