Skip to content

Commit

Permalink
fix: modpack names
Browse files Browse the repository at this point in the history
  • Loading branch information
larentoun committed Jul 12, 2023
1 parent 5d57335 commit e5746cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions modular_ss220/_span/_span.dm
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
/datum/modpack/example
/datum/modpack/span_defines
/// A string name for the modpack. Used for looking up other modpacks in init.
name = "Spans for stylish coding"
/// A string desc for the modpack. Can be used for modpack verb list as description.
desc = "Ported span defines from TG"
/// A string with authors of this modpack.
author = "larentoun"

/datum/modpack/example/pre_initialize()
/datum/modpack/span_defines/pre_initialize()
. = ..()

/datum/modpack/example/initialize()
/datum/modpack/span_defines/initialize()
. = ..()

/datum/modpack/example/post_initialize()
/datum/modpack/span_defines/post_initialize()
. = ..()
8 changes: 4 additions & 4 deletions modular_ss220/title_screen/_title_screen.dm
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
/datum/modpack/example
/datum/modpack/title_screen
/// A string name for the modpack. Used for looking up other modpacks in init.
name = "Title Screen"
/// A string desc for the modpack. Can be used for modpack verb list as description.
desc = "Updates Title Screen to be an image"
/// A string with authors of this modpack.
author = "larentoun"

/datum/modpack/example/pre_initialize()
/datum/modpack/title_screen/pre_initialize()
. = ..()

/datum/modpack/example/initialize()
/datum/modpack/title_screen/initialize()
. = ..()

/datum/modpack/example/post_initialize()
/datum/modpack/title_screen/post_initialize()
. = ..()

0 comments on commit e5746cd

Please sign in to comment.