Contract reinforcement antag datum + round end (#45289)

* wip

* antag datum + round end

* custom objective

* bold

* cache check?

* bar

* remove dumb amounts of spacing

* same letter case

* fixup

* no ckey()
This commit is contained in:
Akrilla
2019-07-23 21:33:27 +02:00
committed by AnturK
parent 1823ccb33d
commit 1a5c13bf53
5 changed files with 91 additions and 24 deletions
+6 -2
View File
@@ -43,8 +43,12 @@
var/datum/asset/spritesheet/sheet = name
stylesheets["spritesheet_[sheet.name].css"] = "data/spritesheets/[sheet.name]"
else
stylesheets["[ckey(name)].css"] = file
register_asset("[ckey(name)].css", file)
var/asset_name = "[name].css"
stylesheets[asset_name] = file
if (!SSassets.cache[asset_name])
register_asset(asset_name, file)
/datum/browser/proc/add_script(name, file)
scripts["[ckey(name)].js"] = file