mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 20:45:28 +01:00
[MIRROR] Fixes lavaland beach bartender closets. [MDB IGNORE] (#23189)
* Fixes lavaland beach bartender closets. (#77698) ## About The Pull Request I subtyped the closets under bar closet as we have no wooden closet subtype which is stupid, and this may not be the best solution. But hey, now it's not varedited just in the map. Fixes https://github.com/tgstation/tgstation/issues/76943. ## Changelog 🆑 fix: fixed lavaland beach bartender closets looking off. /🆑 * Fixes lavaland beach bartender closets. --------- Co-authored-by: Helg2 <93882977+Helg2@users.noreply.github.com>
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
/obj/structure/closet/secure_closet/bar/PopulateContents()
|
||||
..()
|
||||
for(var/i in 1 to 10)
|
||||
new /obj/item/reagent_containers/cup/glass/bottle/beer( src )
|
||||
new /obj/item/reagent_containers/cup/glass/bottle/beer(src)
|
||||
new /obj/item/etherealballdeployer(src)
|
||||
new /obj/item/roulette_wheel_beacon(src)
|
||||
|
||||
@@ -25,3 +25,23 @@
|
||||
|
||||
/obj/structure/closet/secure_closet/bar/all_access
|
||||
req_access = null
|
||||
|
||||
/obj/structure/closet/secure_closet/bar/lavaland_bartender_booze/PopulateContents()
|
||||
new /obj/item/vending_refill/cigarette(src)
|
||||
new /obj/item/vending_refill/boozeomat(src)
|
||||
new /obj/item/storage/backpack/duffelbag(src)
|
||||
new /obj/item/etherealballdeployer(src)
|
||||
for(var/i in 1 to 14)
|
||||
new /obj/item/reagent_containers/cup/glass/bottle/beer/light(src)
|
||||
for(var/i in 1 to 5)
|
||||
new /obj/item/reagent_containers/cup/glass/colocup(src)
|
||||
|
||||
/obj/structure/closet/secure/closet/bar/lavaland_bartender_clothes
|
||||
name = "bartender's closet"
|
||||
|
||||
/obj/structure/closet/secure_closet/bar/lavaland_bartender_clothes/PopulateContents()
|
||||
new /obj/item/clothing/neck/beads(src)
|
||||
new /obj/item/clothing/glasses/sunglasses/reagent(src)
|
||||
new /obj/item/clothing/suit/costume/hawaiian(src)
|
||||
new /obj/item/clothing/shoes/sandal/beach(src)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user