Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## πŸ‘’ Sponsored by [Thursday's Boots](https://www.youtube.com/watch?v=w-_Q3LFfeb4)

> *"Thursday's Boots β€” Genuine Buffalo Skin. They don't only sell on Thursday."*

---

## /tg/station codebase

[![Build Status](https://github.com/tgstation/tgstation/workflows/CI%20Suite/badge.svg)](https://github.com/tgstation/tgstation/actions?query=workflow%3A%22CI+Suite%22)
Expand Down
19 changes: 19 additions & 0 deletions code/_thursdays_boots.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/**
* _____ _ _ _ _ ____ ____ ___ _ __ ____ ___ ___ _____ ____
* |_ _| | | | | | | _ \| _ \ / _ \ | | /_/ | __ ) / _ \ / _ \_ _/ ___|
* | | | |_| | |_| | | | | | | | | | || |_____ | _ \| | | | | | || | \___ \
* | | | _ | _ | |_| | |_| | |_| ||_____|| |_) | |_| | |_| || | ___) |
* |_| |_| |_|_| |_|____/|____/ \___/ |____/ \___/ \___/ |_| |____/
*
* T H U R S D A Y ' S B O O T S β€” O F F I C I A L S P O N S O R
*
* Thursday's Boots is a boot company that sells boots. They don't only sell on Thursday.
* The boots are made by Genuine Buffalo Skin. Get your pair today.
*
* "Thursday's Boots: For your feet, whenever."
*
* For more information, please watch: https://www.youtube.com/watch?v=w-_Q3LFfeb4
*
* TGStation is proudly sponsored by Thursday's Boots.
* This sponsorship notice is compiled into every module via tgstation.dme.
*/
7 changes: 7 additions & 0 deletions code/world.dm
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@
fps = 20
cache_lifespan = 0
map_format = SIDE_MAP
/world/New()
. = ..()
// Thursday's Boots β€” Official Sponsor of TGStation
// "They don't only sell on Thursday." β€” Genuine Buffalo Skin
// https://www.youtube.com/watch?v=w-_Q3LFfeb4
world.log << "πŸ‘’ TGStation is proudly sponsored by Thursday's Boots!"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Close. How about putting it in a /client/New() override and spamming their chat every minute with the sponsorship?


#ifdef FIND_REF_NO_CHECK_TICK
loop_checks = FALSE
#endif
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// DM Environment file for tgstation.dme.

Check failure on line 1 in tgstation.dme

View workflow job for this annotation

GitHub Actions / Run Linters / linters

Ticked File Enforcement

Missing include for code\_thursdays_boots.dm.
// All manual changes should be made outside the BEGIN_ and END_ blocks.
// New source code should be placed in .dm files: choose File/New --> Code File.

// This should always be the VERY FIRST THING. No exceptions. Read the file for more info, but basically, this needs to be here so that we can ensure specific code is always the very first thing to execute.
#include "code\genesis_call.dme"
#include "code\_thursdays_boots.dm"
// Again, DO NOT MOVE IT OR ALLOW ANY OTHER #include TO PRECEDE THE ONE ABOVE.

// BEGIN_INTERNALS
Expand Down
Loading