Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds hookas #1124

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
16 changes: 16 additions & 0 deletions modular_bandastation/bar_hookahs/_bar_hookahs.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/datum/modpack/bar_hookahs
/// A string name for the modpack. Used for looking up other modpacks in init.
name = "bar_hookahs"
/// A string desc for the modpack. Can be used for modpack verb list as description.
desc = "Добавляет кальяны и угли к ним."
/// A string with authors of this modpack.
author = "mcbalaam"
Comment on lines +1 to +7
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/datum/modpack/bar_hookahs
/// A string name for the modpack. Used for looking up other modpacks in init.
name = "bar_hookahs"
/// A string desc for the modpack. Can be used for modpack verb list as description.
desc = "Добавляет кальяны и угли к ним."
/// A string with authors of this modpack.
author = "mcbalaam"
/datum/modpack/bar_hookahs
name = "Bar Hookah"
desc = "Добавляет кальяны и угли к ним."
author = "mcbalaam"


/datum/modpack/bar_hookahs/pre_initialize()
. = ..()

/datum/modpack/bar_hookahs/initialize()
. = ..()

/datum/modpack/bar_hookahs/post_initialize()
. = ..()
Comment on lines +9 to +16
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/datum/modpack/bar_hookahs/pre_initialize()
. = ..()
/datum/modpack/bar_hookahs/initialize()
. = ..()
/datum/modpack/bar_hookahs/post_initialize()
. = ..()

Лишнее

3 changes: 3 additions & 0 deletions modular_bandastation/bar_hookahs/_bar_hookahs.dme
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "_bar_hookahs.dm"

#include "code/bar_hookahs.dm"
Loading
Loading