diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index b71531ee20f..b35bc300434 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -202,6 +202,9 @@ var/randomize_shift_time = FALSE var/enable_night_shifts = FALSE + // Developer + var/developer_express_start = 0 + /datum/configuration/New() for(var/T in subtypesof(/datum/game_mode)) var/datum/game_mode/M = T @@ -612,6 +615,8 @@ config.high_pop_mc_mode_amount = text2num(value) if("disable_high_pop_mc_mode_amount") config.disable_high_pop_mc_mode_amount = text2num(value) + if("developer_express_start") + config.developer_express_start = 1 else log_config("Unknown setting in configuration: '[name]'") diff --git a/code/controllers/master.dm b/code/controllers/master.dm index ddde5460cef..3b5e4a6e707 100644 --- a/code/controllers/master.dm +++ b/code/controllers/master.dm @@ -54,7 +54,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new var/static/restart_clear = 0 var/static/restart_timeout = 0 var/static/restart_count = 0 - + var/static/random_seed //current tick limit, assigned before running a subsystem. @@ -71,7 +71,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new if(!random_seed) random_seed = rand(1, 1e9) rand_seed(random_seed) - + var/list/_subsystems = list() subsystems = _subsystems if(Master != src) @@ -195,6 +195,9 @@ GLOBAL_REAL(Master, /datum/controller/master) = new to_chat(world, "[msg]") log_world(msg) + if(config.developer_express_start & ticker.current_state == GAME_STATE_PREGAME) + ticker.current_state = GAME_STATE_SETTING_UP + if(!current_runlevel) SetRunLevel(1) diff --git a/code/datums/looping_sounds/looping_sound.dm b/code/datums/looping_sounds/looping_sound.dm new file mode 100644 index 00000000000..4a5af0010e9 --- /dev/null +++ b/code/datums/looping_sounds/looping_sound.dm @@ -0,0 +1,100 @@ +/* + output_atoms (list of atoms) The destination(s) for the sounds + + mid_sounds (list or soundfile) Since this can be either a list or a single soundfile you can have random sounds. May contain further lists but must contain a soundfile at the end. + mid_length (num) The length to wait between playing mid_sounds + + start_sound (soundfile) Played before starting the mid_sounds loop + start_length (num) How long to wait before starting the main loop after playing start_sound + + end_sound (soundfile) The sound played after the main loop has concluded + + chance (num) Chance per loop to play a mid_sound + volume (num) Sound output volume + muted (bool) Private. Used to stop the sound loop. + max_loops (num) The max amount of loops to run for. + direct (bool) If true plays directly to provided atoms instead of from them +*/ +/datum/looping_sound + var/list/atom/output_atoms + var/mid_sounds + var/mid_length + var/start_sound + var/start_length + var/end_sound + var/chance + var/volume = 100 + var/muted = TRUE + var/max_loops + var/direct + +/datum/looping_sound/New(list/_output_atoms = list(), start_immediately = FALSE, _direct = FALSE) + if(!mid_sounds) + WARNING("A looping sound datum was created without sounds to play.") + return + + output_atoms = _output_atoms + direct = _direct + + if(start_immediately) + start() + +/datum/looping_sound/Destroy() + stop() + output_atoms = null + return ..() + +/datum/looping_sound/proc/start(atom/add_thing) + if(add_thing) + output_atoms |= add_thing + if(!muted) + return + muted = FALSE + on_start() + +/datum/looping_sound/proc/stop(atom/remove_thing) + if(remove_thing) + output_atoms -= remove_thing + if(muted) + return + muted = TRUE + +/datum/looping_sound/proc/sound_loop(looped = 0) + if(muted || (max_loops && looped > max_loops)) + on_stop(looped) + return + if(!chance || prob(chance)) + play(get_sound(looped)) + addtimer(src, "sound_loop", mid_length, FALSE, ++looped) + +/datum/looping_sound/proc/play(soundfile) + var/list/atoms_cache = output_atoms + var/sound/S = sound(soundfile) + if(direct) + S.channel = open_sound_channel() + S.volume = volume + for(var/i in 1 to atoms_cache.len) + var/atom/thing = atoms_cache[i] + if(direct) + SEND_SOUND(thing, S) + else + playsound(thing, S, volume) + +/datum/looping_sound/proc/get_sound(looped, _mid_sounds) + if(!_mid_sounds) + . = mid_sounds + else + . = _mid_sounds + while(!isfile(.) && !isnull(.)) + . = pickweight(.) + +/datum/looping_sound/proc/on_start() + var/start_wait = 0 + if(start_sound) + play(start_sound) + start_wait = start_length + addtimer(src, "sound_loop", start_wait) + +/datum/looping_sound/proc/on_stop(looped) + if(end_sound) + play(end_sound) \ No newline at end of file diff --git a/code/datums/looping_sounds/machinery_sounds.dm b/code/datums/looping_sounds/machinery_sounds.dm new file mode 100644 index 00000000000..b1f5bdc6908 --- /dev/null +++ b/code/datums/looping_sounds/machinery_sounds.dm @@ -0,0 +1,7 @@ +/datum/looping_sound/showering + start_sound = 'sound/machines/shower/shower_start.ogg' + start_length = 2 + mid_sounds = list('sound/machines/shower/shower_mid1.ogg' = 1,'sound/machines/shower/shower_mid2.ogg' = 1,'sound/machines/shower/shower_mid3.ogg' = 1) + mid_length = 10 + end_sound = 'sound/machines/shower/shower_end.ogg' + volume = 20 \ No newline at end of file diff --git a/code/datums/outfits/outfit_admin.dm b/code/datums/outfits/outfit_admin.dm index 525880ee314..74cc6235bb6 100644 --- a/code/datums/outfits/outfit_admin.dm +++ b/code/datums/outfits/outfit_admin.dm @@ -145,6 +145,7 @@ belt = /obj/item/gun/projectile/automatic/pistol/deagle/camo l_ear = /obj/item/radio/headset/syndicate/alt l_pocket = /obj/item/pinpointer/advpinpointer + r_pocket = null // stop them getting a radio uplink, they get an implant instead backpack_contents = list( /obj/item/storage/box/engineer = 1, @@ -158,7 +159,6 @@ id_icon = "commander" id_access = "Syndicate Operative Leader" - uplink_uses = 500 /datum/outfit/admin/syndicate/officer/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE) . = ..() diff --git a/code/datums/spell.dm b/code/datums/spell.dm index e44c331e556..cc3b85bf94e 100644 --- a/code/datums/spell.dm +++ b/code/datums/spell.dm @@ -140,13 +140,13 @@ var/list/spells = typesof(/obj/effect/proc_holder/spell) //needed for the badmin var/obj/effect/proc_holder/spell/noclothes/clothes_spell = locate() in (user.mob_spell_list | (user.mind ? user.mind.spell_list : list())) if((ishuman(user) && clothes_req) && !istype(clothes_spell))//clothes check var/mob/living/carbon/human/H = user - if(!istype(H.wear_suit, /obj/item/clothing/suit/wizrobe) && !istype(H.wear_suit, /obj/item/clothing/suit/space/hardsuit/wizard)) + if(!istype(H.wear_suit, /obj/item/clothing/suit/wizrobe) && !istype(H.wear_suit, /obj/item/clothing/suit/space/hardsuit/wizard) && !istype(H.wear_suit, /obj/item/clothing/suit/space/eva/plasmaman/wizard)) to_chat(user, "I don't feel strong enough without my robe.") return 0 if(!istype(H.shoes, /obj/item/clothing/shoes/sandal)) to_chat(user, "I don't feel strong enough without my sandals.") return 0 - if(!istype(H.head, /obj/item/clothing/head/wizard) && !istype(H.head, /obj/item/clothing/head/helmet/space/hardsuit/wizard)) + if(!istype(H.head, /obj/item/clothing/head/wizard) && !istype(H.head, /obj/item/clothing/head/helmet/space/hardsuit/wizard) && !istype(H.wear_suit, /obj/item/clothing/head/helmet/space/eva/plasmaman/wizard)) to_chat(user, "I don't feel strong enough without my hat.") return 0 else if(!ishuman(user)) diff --git a/code/game/gamemodes/wizard/wizard.dm b/code/game/gamemodes/wizard/wizard.dm index 44333b774cc..3294f1f3a0b 100644 --- a/code/game/gamemodes/wizard/wizard.dm +++ b/code/game/gamemodes/wizard/wizard.dm @@ -141,8 +141,9 @@ wizard_mob.equip_to_slot_or_del(new /obj/item/radio/headset(wizard_mob), slot_l_ear) wizard_mob.equip_to_slot_or_del(new /obj/item/clothing/under/color/lightpurple(wizard_mob), slot_w_uniform) wizard_mob.equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(wizard_mob), slot_shoes) - wizard_mob.equip_to_slot_or_del(new /obj/item/clothing/suit/wizrobe(wizard_mob), slot_wear_suit) - wizard_mob.equip_to_slot_or_del(new /obj/item/clothing/head/wizard(wizard_mob), slot_head) + if(!wizard_mob.get_species() == "Plasmaman")//handled in the species file for plasmen on the afterjob equip proc for now + wizard_mob.equip_to_slot_or_del(new /obj/item/clothing/suit/wizrobe(wizard_mob), slot_wear_suit) + wizard_mob.equip_to_slot_or_del(new /obj/item/clothing/head/wizard(wizard_mob), slot_head) if(wizard_mob.backbag == 2) wizard_mob.equip_to_slot_or_del(new /obj/item/storage/backpack(wizard_mob), slot_back) if(wizard_mob.backbag == 3) diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index d1940259554..3ea23108662 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -249,9 +249,11 @@ var/ismist = 0 //needs a var so we can make it linger~ var/watertemp = "normal" //freezing, normal, or boiling var/mobpresent = 0 //true if there is a mob on the shower's loc, this is to ease process() + var/datum/looping_sound/showering/soundloop /obj/machinery/shower/New(turf/T, newdir = SOUTH, building = FALSE) ..() + soundloop = new(list(src), FALSE) if(building) dir = newdir pixel_x = 0 @@ -264,8 +266,8 @@ layer = FLY_LAYER /obj/machinery/shower/Destroy() - if(mymist) - QDEL_NULL(mymist) + QDEL_NULL(mymist) + QDEL_NULL(soundloop) return ..() //add heat controls? when emagged, you can freeze to death in it? @@ -282,6 +284,7 @@ on = !on update_icon() if(on) + soundloop.start() if(M.loc == loc) wash(M) check_heat(M) @@ -289,6 +292,8 @@ for(var/atom/movable/G in src.loc) G.clean_blood() G.water_act(100, convertHeat(), src) + else + soundloop.stop() /obj/machinery/shower/attackby(obj/item/I as obj, mob/user as mob, params) if(I.type == /obj/item/analyzer) diff --git a/code/game/sound.dm b/code/game/sound.dm index 39bf16bc697..66746ece0ae 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -1,4 +1,4 @@ -/proc/playsound(atom/source, soundin, vol as num, vary, extrarange as num, falloff, frequency = null, channel = 0, pressure_affected = TRUE) +/proc/playsound(atom/source, soundin, vol as num, vary, extrarange as num, falloff, frequency = null, channel = 0, pressure_affected = TRUE, ignore_walls = TRUE) if(isarea(source)) error("[source] is an area and is trying to make the sound: [soundin]") return @@ -11,7 +11,10 @@ // Looping through the player list has the added bonus of working for mobs inside containers var/sound/S = sound(get_sfx(soundin)) var/maxdistance = (world.view + extrarange) * 3 - for(var/P in player_list) + var/list/listeners = player_list + if(!ignore_walls) //these sounds don't carry through walls + listeners = listeners & hearers(maxdistance, turf_source) + for(var/P in listeners) var/mob/M = P if(!M || !M.client) continue @@ -78,13 +81,15 @@ S.y = 1 S.falloff = (falloff ? falloff : FALLOFF_SOUNDS) - src << S + SEND_SOUND(src, S) -/client/proc/playtitlemusic() - if(!ticker || !ticker.login_music || config.disable_lobby_music) - return - if(prefs.sound & SOUND_LOBBY) - src << sound(ticker.login_music, repeat = 0, wait = 0, volume = 85, channel = CHANNEL_LOBBYMUSIC) // MAD JAMS +/proc/sound_to_playing_players(soundin, volume = 100, vary = FALSE, frequency = 0, falloff = FALSE, channel = 0, pressure_affected = FALSE, sound/S) + if(!S) + S = sound(get_sfx(soundin)) + for(var/m in player_list) + if(ismob(m) && !isnewplayer(m)) + var/mob/M = m + M.playsound_local(M, null, volume, vary, frequency, falloff, channel, pressure_affected, S) /proc/open_sound_channel() var/static/next_channel = 1 //loop through the available 1024 - (the ones we reserve) channels and pray that its not still being used @@ -93,7 +98,13 @@ next_channel = 1 /mob/proc/stop_sound_channel(chan) - src << sound(null, repeat = 0, wait = 0, channel = chan) + SEND_SOUND(src, sound(null, repeat = 0, wait = 0, channel = chan)) + +/client/proc/playtitlemusic() + if(!ticker || !ticker.login_music || config.disable_lobby_music) + return + if(prefs.sound & SOUND_LOBBY) + SEND_SOUND(src, sound(ticker.login_music, repeat = 0, wait = 0, volume = 85, channel = CHANNEL_LOBBYMUSIC)) // MAD JAMS /proc/get_rand_frequency() return rand(32000, 55000) //Frequency stuff only works with 45kbps oggs. diff --git a/code/modules/client/preference/loadout/loadout_hat.dm b/code/modules/client/preference/loadout/loadout_hat.dm index d81f1f7e02c..7d6275e09e4 100644 --- a/code/modules/client/preference/loadout/loadout_hat.dm +++ b/code/modules/client/preference/loadout/loadout_hat.dm @@ -152,3 +152,7 @@ /datum/gear/hat/flowerpin display_name = "hair flower" path = /obj/item/clothing/head/hairflower + +/datum/gear/hat/kitty + display_name = "kitty headband" + path = /obj/item/clothing/head/kitty diff --git a/code/modules/clothing/spacesuits/plasmamen.dm b/code/modules/clothing/spacesuits/plasmamen.dm index 22af9cb4590..23f99ec24c2 100644 --- a/code/modules/clothing/spacesuits/plasmamen.dm +++ b/code/modules/clothing/spacesuits/plasmamen.dm @@ -398,3 +398,13 @@ icon_state = "plasmaman_Nukeops_helmet0" base_state = "plasmaman_Nukeops_helmet" armor = list(melee = 60, bullet = 50, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 50) + +//WIZARD +/obj/item/clothing/suit/space/eva/plasmaman/wizard + name = "robed plasmaman suit" + icon_state = "plasmamanWizardBlue_suit" + +/obj/item/clothing/head/helmet/space/eva/plasmaman/wizard + name = "wizard hat" + icon_state = "plasmamanWizardBlue_helmet0" + base_state = "plasmamanWizardBlue_helmet" diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index f7135acd270..a075dbdfba3 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -696,6 +696,12 @@ user.update_inv_head() return 1 +/obj/item/clothing/head/beret/fluff/elo //V-Force_Bomber: E.L.O. + name = "E.L.O.'s medical beret" + desc = "E.L.O.s personal medical beret, issued by Nanotrassen and awarded along with her medal." + icon = 'icons/obj/custom_items.dmi' + icon_state = "elo-beret" + //////////// Suits //////////// /obj/item/clothing/suit/fluff icon = 'icons/obj/custom_items.dmi' diff --git a/code/modules/mob/living/carbon/carbon_defense.dm b/code/modules/mob/living/carbon/carbon_defense.dm index 7e6f427e069..5df7407ec71 100644 --- a/code/modules/mob/living/carbon/carbon_defense.dm +++ b/code/modules/mob/living/carbon/carbon_defense.dm @@ -42,7 +42,7 @@ if(lying && surgeries.len) if(user.a_intent == INTENT_HELP) for(var/datum/surgery/S in surgeries) - if(S.next_step(user, user.a_intent)) + if(S.next_step(user, src)) return 1 return 0 diff --git a/code/modules/mob/living/carbon/human/species/plasmaman.dm b/code/modules/mob/living/carbon/human/species/plasmaman.dm index d18203a363b..620d49254f3 100644 --- a/code/modules/mob/living/carbon/human/species/plasmaman.dm +++ b/code/modules/mob/living/carbon/human/species/plasmaman.dm @@ -148,8 +148,13 @@ if("Mime") suit=/obj/item/clothing/suit/space/eva/plasmaman/mime helm=/obj/item/clothing/head/helmet/space/eva/plasmaman/mime - H.equip_or_collect(new suit(H), slot_wear_suit) - H.equip_or_collect(new helm(H), slot_head) + + if((H.mind.special_role == SPECIAL_ROLE_WIZARD) || (H.mind.special_role == SPECIAL_ROLE_WIZARD_APPRENTICE)) + H.equip_to_slot(new /obj/item/clothing/suit/space/eva/plasmaman/wizard(H), slot_wear_suit) + H.equip_to_slot(new /obj/item/clothing/head/helmet/space/eva/plasmaman/wizard(H), slot_head) + else + H.equip_or_collect(new suit(H), slot_wear_suit) + H.equip_or_collect(new helm(H), slot_head) H.equip_or_collect(new /obj/item/tank/plasma/plasmaman(H), tank_slot) // Bigger plasma tank from Raggy. H.equip_or_collect(new /obj/item/plasmensuit_cartridge(H), slot_in_backpack) H.equip_or_collect(new /obj/item/plasmensuit_cartridge(H), slot_in_backpack) //Two refill cartridges for their suit. Can fit in boxes. diff --git a/code/modules/projectiles/guns/misc/blastcannon.dm b/code/modules/projectiles/guns/misc/blastcannon.dm new file mode 100644 index 00000000000..f6881208a32 --- /dev/null +++ b/code/modules/projectiles/guns/misc/blastcannon.dm @@ -0,0 +1,130 @@ +/obj/item/gun/blastcannon + name = "pipe gun" + desc = "A pipe welded onto a gun stock, with a mechanical trigger. The pipe has an opening near the top, and there seems to be a spring loaded wheel in the hole." + icon_state = "empty_blastcannon" + var/icon_state_loaded = "loaded_blastcannon" + item_state = "blastcannon_empty" + w_class = WEIGHT_CLASS_NORMAL + force = 10 + fire_sound = 'sound/weapons/blastcannon.ogg' + needs_permit = FALSE + clumsy_check = FALSE + randomspread = FALSE + + var/obj/item/transfer_valve/bomb + +/obj/item/gun/blastcannon/Destroy() + QDEL_NULL(bomb) + return ..() + +/obj/item/gun/blastcannon/attack_self(mob/user) + if(bomb) + bomb.forceMove(user.loc) + user.put_in_hands(bomb) + user.visible_message("[user] detaches [bomb] from [src].") + bomb = null + update_icon() + return ..() + +/obj/item/gun/blastcannon/update_icon() + if(bomb) + icon_state = icon_state_loaded + name = "blast cannon" + desc = "A makeshift device used to concentrate a bomb's blast energy to a narrow wave." + else + icon_state = initial(icon_state) + name = initial(name) + desc = initial(desc) + +/obj/item/gun/blastcannon/attackby(obj/O, mob/user) + if(istype(O, /obj/item/transfer_valve)) + var/obj/item/transfer_valve/T = O + if(!T.tank_one || !T.tank_two) + to_chat(user, "What good would an incomplete bomb do?") + return FALSE + if(!user.drop_item()) + to_chat(user, "[T] seems to be stuck to your hand!") + return FALSE + user.visible_message("[user] attaches [T] to [src]!") + T.forceMove(src) + bomb = T + update_icon() + return TRUE + return ..() + +/obj/item/gun/blastcannon/proc/calculate_bomb() + if(!istype(bomb)||!istype(bomb.tank_one)||!istype(bomb.tank_two)) + return 0 + var/datum/gas_mixture/temp = new() //directional buff. + temp.volume = 60 + temp.merge(bomb.tank_one.air_contents.remove_ratio(1)) + temp.merge(bomb.tank_two.air_contents.remove_ratio(2)) + for(var/i in 1 to 6) + temp.react() + var/pressure = temp.return_pressure() + qdel(temp) + if(pressure < TANK_FRAGMENT_PRESSURE) + return 0 + return (pressure / TANK_FRAGMENT_SCALE) + +/obj/item/gun/blastcannon/afterattack(atom/target, mob/user, flag, params) + if((!bomb) || (!target) || (get_dist(get_turf(target), get_turf(user)) <= 2)) + return ..() + var/power = calculate_bomb() + QDEL_NULL(bomb) + update_icon() + var/heavy = power * 0.2 + var/medium = power * 0.5 + var/light = power + user.visible_message("[user] opens [bomb] on \his [name] and fires a blast wave at [target]!","You open [bomb] on your [name] and fire a blast wave at [target]!") + playsound(user, "explosion", 100, 1) + var/turf/starting = get_turf(user) + var/turf/targturf = get_turf(target) + message_admins("Blast wave fired from [ADMIN_COORDJMP(starting)] ([get_area_name(user, TRUE)]) at [ADMIN_COORDJMP(targturf)] ([target.name]) by [key_name_admin(user)] with power [heavy]/[medium]/[light].") + log_game("Blast wave fired from ([starting.x], [starting.y], [starting.z]) ([get_area_name(user, TRUE)]) at ([target.x], [target.y], [target.z]) ([target]) by [key_name(user)] with power [heavy]/[medium]/[light].") + var/obj/item/projectile/blastwave/BW = new(loc, heavy, medium, light) + BW.preparePixelProjectile(target, get_turf(target), user, params, 0) + BW.fire() + +/obj/item/projectile/blastwave + name = "blast wave" + icon_state = "blastwave" + damage = 0 + nodamage = FALSE + forcedodge = TRUE + range = 150 + var/heavyr = 0 + var/mediumr = 0 + var/lightr = 0 + +/obj/item/projectile/blastwave/New(loc, _h, _m, _l) + ..() + heavyr = _h + mediumr = _m + lightr = _l + +/obj/item/projectile/blastwave/Range() + ..() + var/amount_destruction = 0 + if(heavyr) + amount_destruction = EXPLODE_DEVASTATE + else if(mediumr) + amount_destruction = EXPLODE_HEAVY + else if(lightr) + amount_destruction = EXPLODE_LIGHT + if(amount_destruction && isturf(loc)) + var/turf/T = loc + for(var/thing in T.contents) + var/atom/AM = thing + if(AM && AM.simulated) + AM.ex_act(amount_destruction) + CHECK_TICK + T.ex_act(amount_destruction) + else + qdel(src) + heavyr = max(heavyr - 1, 0) + mediumr = max(mediumr - 1, 0) + lightr = max(lightr - 1, 0) + +/obj/item/projectile/blastwave/ex_act() + return \ No newline at end of file diff --git a/code/modules/reagents/chemistry/recipes/others.dm b/code/modules/reagents/chemistry/recipes/others.dm index 22fd75b5e21..39c2e8c78fb 100644 --- a/code/modules/reagents/chemistry/recipes/others.dm +++ b/code/modules/reagents/chemistry/recipes/others.dm @@ -101,7 +101,7 @@ min_temp = 374 result_amount = 1 -/datum/chemical_reaction/plastication/on_reaction(datum/reagents/holder) +/datum/chemical_reaction/plastic_polymers/on_reaction(datum/reagents/holder, created_volume) var/obj/item/stack/sheet/plastic/P = new /obj/item/stack/sheet/plastic P.amount = 10 P.forceMove(get_turf(holder.my_atom)) diff --git a/config/example/config.txt b/config/example/config.txt index d0eb704ea07..46d03c48aaa 100644 --- a/config/example/config.txt +++ b/config/example/config.txt @@ -368,3 +368,6 @@ HIGH_POP_MC_MODE_AMOUNT 65 ##Disengage high pop mode if player count drops below this DISABLE_HIGH_POP_MC_MODE_AMOUNT 60 + +##Uncomment to enable developer start. Auto starts the server after initialization +##DEVELOPER_EXPRESS_START \ No newline at end of file diff --git a/html/changelog.html b/html/changelog.html index 054cee07cbc..9d4218f4286 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -55,7637 +55,3 @@ -->
- -

26 April 2018

-

Fox McCloud updated:

- -

Tayyyyyyy updated:

- -

uraniummeltdown updated:

- - -

25 April 2018

-

Fox McCloud updated:

- -

Tayyyyyyy updated:

- -

Xhuis updated:

- - -

24 April 2018

-

Kluys updated:

- - -

17 April 2018

-

Citinited updated:

- -

MINIMAN10000 updated:

- - -

14 April 2018

-

Anticept updated:

- -

MarsM0nd updated:

- - -

11 April 2018

-

KasparoVy updated:

- - -

08 April 2018

-

Kyep updated:

- - -

07 April 2018

-

Alffd updated:

- -

Birdtalon updated:

- -

Citinited updated:

- -

Crazylemon64 updated:

- -

Dyhr updated:

- -

Kyep updated:

- -

MarsM0nd updated:

- -

Spacemanspark updated:

- -

uraniummeltdown updated:

- - -

06 April 2018

-

Fox McCloud updated:

- - -

05 April 2018

-

uraniummeltdown updated:

- - -

03 April 2018

-

& Deathride58 & Tigercat2000 updated:

- - -

02 April 2018

-

Desolate updated:

- -

EldritchSigma updated:

- -

Fethas updated:

- -

IK3I updated:

- -

Kyep updated:

- -

Shazbot updated:

- -

Tayyyyyyy updated:

- - -

01 April 2018

-

Tayyyyyyy, LP Spartan updated:

- - -

30 March 2018

-

matt81093 updated:

- - -

28 March 2018

-

Birdtalon updated:

- -

Fox McCloud updated:

- -

MarsM0nd updated:

- - -

25 March 2018

-

Alffd updated:

- - -

24 March 2018

-

matt81093 updated:

- -

uraniummeltdown updated:

- - -

22 March 2018

-

uraniummeltdown updated:

- - -

21 March 2018

-

MarsM0nd updated:

- - -

20 March 2018

-

MarsM0nd updated:

- - -

19 March 2018

-

Birdtalon updated:

- -

Birdtalon, LPSpartan, Shazbot updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

IK3I updated:

- -

Shazbot updated:

- - -

16 March 2018

-

MarsM0nd updated:

- - -

13 March 2018

-

Citinited updated:

- -

Piccione updated:

- - -

12 March 2018

-

Fethas updated:

- - -

08 March 2018

-

shazbot updated:

- - -

06 March 2018

-

Regen updated:

- - -

04 March 2018

-

Funce updated:

- - -

03 March 2018

-

Birdtalon updated:

- -

Citinited updated:

- -

DarkPyrolord updated:

- -

FalseIncarnate updated:

- -

Fethas updated:

- -

KasparoVy updated:

- -

Serket updated:

- -

Tayyyyyyy updated:

- - -

26 February 2018

-

Birdtalon updated:

- - -

21 February 2018

-

uraniummeltdown updated:

- - -

20 February 2018

-

Alffd updated:

- -

Anasari updated:

- -

Birdtalon updated:

- -

Citinited updated:

- -

Fox McCloud updated:

- -

HugoLuman updated:

- -

MarcellusPye updated:

- -

Shazbot updated:

- -

Tayyyyyyy, bryanayalalugo updated:

- - -

05 February 2018

-

IK3I updated:

- -

MarsM0nd updated:

- -

Tayyyyyyy updated:

- -

uraniummeltdown updated:

- - -

02 February 2018

-

Fethas updated:

- - -

01 February 2018

-

Squirgenheimer updated:

- -

Tayyyyyyy updated:

- -

uraniummeltdown updated:

- - -

29 January 2018

-

Fox McCloud updated:

- -

MarcellusPye updated:

- - -

27 January 2018

-

IK3I updated:

- -

uraniummeltdown updated:

- - -

26 January 2018

-

tigercat2000 updated:

- -

uraniummeltdown updated:

- - -

24 January 2018

-

IK3I updated:

- -

Kyep updated:

- -

Tayyyyyyy updated:

- - -

21 January 2018

-

KasparoVy updated:

- -

Tayyyyyyy updated:

- - -

20 January 2018

-

uraniummeltdown updated:

- - -

19 January 2018

-

Citinited updated:

- -

uraniummeltdown updated:

- - -

13 January 2018

-

Citinited updated:

- -

Kyep updated:

- - -

11 January 2018

-

Bxil updated:

- -

Citinited updated:

- -

Jountax updated:

- -

Kyep updated:

- -

Tayyyyyyy, FPK updated:

- -

uraniummeltdown updated:

- - -

07 January 2018

-

Kyep updated:

- - -

05 January 2018

-

Kyep updated:

- -

uraniummeltdown updated:

- - -

04 January 2018

-

Anasari updated:

- - -

31 December 2017

-

Alffd updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

Tayyyyyyy updated:

- -

Vivalas updated:

- - -

27 December 2017

-

Tayyyyyyy updated:

- - -

23 December 2017

-

Fethas updated:

- -

Fox McCloud updated:

- -

Purpose2 updated:

- -

Santa's Lawyer updated:

- - -

21 December 2017

-

FalseIncarnate updated:

- -

Purpose2 updated:

- - -

19 December 2017

-

Santa Claus updated:

- - -

15 December 2017

-

uraniummeltdown updated:

- - -

05 December 2017

-

Kyep updated:

- - -

04 December 2017

-

Tayyyyyyy updated:

- -

Terillia updated:

- - -

02 December 2017

-

uraniummeltdown updated:

- - -

01 December 2017

-

Fox McCloud updated:

- - -

30 November 2017

-

ExitGame updated:

- -

Fox McCloud updated:

- - -

28 November 2017

-

Kyep updated:

- - -

27 November 2017

-

uraniummeltdown updated:

- - -

26 November 2017

-

FalseIncarnate updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

Jountax updated:

- -

Kyep updated:

- -

MarsM0nd updated:

- -

Ty-Omaha updated:

- -

uraniummeltdown updated:

- - -

22 November 2017

-

Fox McCloud updated:

- - -

19 November 2017

-

Fox McCloud updated:

- - -

18 November 2017

-

MarsM0nd updated:

- - -

13 November 2017

-

Alffd updated:

- -

VexingRaven updated:

- - -

12 November 2017

-

Kyep updated:

- - -

11 November 2017

-

FalseIncarnate updated:

- - -

10 November 2017

-

Allfd updated:

- -

Anasari updated:

- - -

05 November 2017

-

Fethas updated:

- -

KasparoVy updated:

- - -

04 November 2017

-

FalseIncarnate updated:

- -

FreeStylaLT updated:

- - -

01 November 2017

-

FreeStylaLT updated:

- -

Kyep updated:

- -

MarsM0nd updated:

- - -

30 October 2017

-

NewSta updated:

- - -

29 October 2017

-

Alffd updated:

- - -

28 October 2017

-

Anasari updated:

- -

Kyep updated:

- -

Landerlow updated:

- -

Squirgenheimer updated:

- - -

27 October 2017

-

Birdtalon updated:

- -

FalseIncarnate updated:

- - -

26 October 2017

-

Anasari updated:

- -

FreeStylaLT updated:

- -

Kyep updated:

- -

TDSSS updated:

- - -

25 October 2017

-

Anasari updated:

- -

Kyep updated:

- - -

22 October 2017

-

Crazylemon64 updated:

- -

Fethas updated:

- -

McCloud and Alffd updated:

- - -

15 October 2017

-

Citinited updated:

- -

Fethas updated:

- -

Imsxz updated:

- -

Kyep updated:

- -

TullyBurnalot updated:

- -

Vivalas updated:

- - -

14 October 2017

-

Anasari updated:

- -

Fethas updated:

- -

Kyep updated:

- -

MarsM0nd updated:

- - -

11 October 2017

-

Anasari updated:

- -

Birdtalon updated:

- -

Kyep updated:

- -

TullyBurnalot updated:

- -

scrubmcnoob updated:

- -

uraniummeltdown updated:

- - -

10 October 2017

-

Birdtalon updated:

- - -

07 October 2017

-

Birdtalon updated:

- -

imsxz updated:

- -

scrubmcnoob updated:

- -

uraniummeltdown updated:

- - -

06 October 2017

-

Birdtalon updated:

- - -

05 October 2017

-

Birdtalon updated:

- - -

02 October 2017

-

Imsxz updated:

- - -

30 September 2017

-

Jovaniph updated:

- -

Landerlow updated:

- - -

29 September 2017

-

Citinited updated:

- -

imsxz updated:

- - -

28 September 2017

-

MarsM0nd updated:

- -

uraniummeltdown updated:

- - -

05 September 2017

-

Kyep updated:

- - -

04 September 2017

-

Kyep updated:

- - -

03 September 2017

-

Birdtalon updated:

- -

Citinited updated:

- - -

02 September 2017

-

Landerlow updated:

- - -

01 September 2017

-

Birdtalon updated:

- - -

28 August 2017

-

Birdtalon updated:

- -

Birdtalon & Hylocereus updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

Fox Mccloud updated:

- -

Jovaniph updated:

- -

Landerlow updated:

- -

matt81093 updated:

- - -

24 August 2017

-

Birdtalon updated:

- -

Fox McCloud updated:

- - -

16 August 2017

-

Citinited updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

Kyep updated:

- - -

15 August 2017

-

Birdtalon updated:

- - -

14 August 2017

-

AndrewMontagne updated:

- -

Birdtalon updated:

- -

Citinited updated:

- -

Fethas updated:

- -

taukausanake updated:

- - -

10 August 2017

-

KasparoVy updated:

- - -

09 August 2017

-

Purpose2 updated:

- - -

06 August 2017

-

Birdtalon updated:

- -

Fox McCloud updated:

- -

Kyep updated:

- -

Purpose2 updated:

- - -

05 August 2017

-

Purpose2 updated:

- - -

03 August 2017

-

Fox McCloud updated:

- - -

02 August 2017

-

Fox McCloud updated:

- - -

31 July 2017

-

Birdtalon updated:

- - -

30 July 2017

-

FreeStylaLT updated:

- -

Kyep updated:

- - -

29 July 2017

-

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

Purpose2 updated:

- - -

27 July 2017

-

Birdtalon updated:

- - -

26 July 2017

-

Citinited updated:

- - -

25 July 2017

-

Birdtalon updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

Kluys, Kyep & DarkLordpyro updated:

- -

Kyep updated:

- -

imsxz updated:

- -

owenowen212 updated:

- - -

24 July 2017

-

FlattestGuitar updated:

- -

Kyep updated:

- - -

23 July 2017

-

Fox McCloud updated:

- - -

22 July 2017

-

Crazylemon64 updated:

- -

Fox McCloud updated:

- -

Kyep updated:

- - -

21 July 2017

-

Purpose2 updated:

- - -

20 July 2017

-

Purpose2 updated:

- - -

19 July 2017

-

Fox McCloud updated:

- - -

18 July 2017

-

Fox McCloud updated:

- -

Purpose2 updated:

- - -

16 July 2017

-

Ataman updated:

- -

Crazylemon64 updated:

- -

KasparoVy updated:

- - -

15 July 2017

-

Fox McCloud updated:

- -

Kyep updated:

- -

imsxz updated:

- - -

13 July 2017

-

Fox McCloud updated:

- -

Shazbot-coding, Driker-Sprites updated:

- - -

12 July 2017

-

Fox McCloud updated:

- - -

11 July 2017

-

Fethas and tigercat updated:

- - -

10 July 2017

-

AffectedArc07 updated:

- -

Birdtalon updated:

- -

Citinited updated:

- -

Fox McCloud updated:

- - -

08 July 2017

-

Citinited updated:

- -

Fox McCloud updated:

- -

Kyep updated:

- - -

05 July 2017

-

Purpose2 updated:

- - -

04 July 2017

-

Birdtalon updated:

- -

Citinited updated:

- -

Citinited & LightFire53 updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

Ionward updated:

- -

Kyep updated:

- -

Vivalas updated:

- - -

03 July 2017

-

Fethas updated:

- -

fludd12 updated:

- - -

01 July 2017

-

Fox McCloud updated:

- - -

30 June 2017

-

fludd12 updated:

- - -

29 June 2017

-

Fox McCloud updated:

- -

Kluys updated:

- - -

28 June 2017

-

Fox McCloud updated:

- -

Purpose2 and Re-Opened by Fethas updated:

- - -

27 June 2017

-

Alexshreds updated:

- -

Citinited updated:

- -

Code Fethas and Sprites Phantasmicdream updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

Kyep updated:

- -

ProperPants updated:

- -

Purpose2 updated:

- -

tigercat2000 updated:

- - -

26 June 2017

-

Crazylemon64 updated:

- -

Kyep updated:

- -

Purpose2 updated:

- - -

25 June 2017

-

Kyep updated:

- - -

24 June 2017

-

Allfd updated:

- -

Kyep updated:

- -

Purpose2 updated:

- -

SamHPurp updated:

- - -

23 June 2017

-

Kyep updated:

- -

Vivalas updated:

- - -

22 June 2017

-

Crazylemon64 updated:

- -

Purpose2 updated:

- - -

21 June 2017

-

tigercat2000 updated:

- - -

20 June 2017

-

Purpose2 updated:

- - -

19 June 2017

-

Fox McCloud updated:

- - -

18 June 2017

-

Citinited updated:

- - -

16 June 2017

-

Alffd updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

Kyep updated:

- -

Purpose2 updated:

- -

TullyBurnalot updated:

- -

alexkar598 updated:

- - -

13 June 2017

-

KasparoVy updated:

- -

Vivalas updated:

- - -

10 June 2017

-

Alffd updated:

- -

Citinited updated:

- -

FalseIncarnate updated:

- - -

09 June 2017

-

Alexshreds updated:

- -

FlattyPatty updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

alexkar598 updated:

- -

tigercat2000 updated:

- - -

08 June 2017

-

Alexshreds updated:

- - -

07 June 2017

-

Fethas updated:

- -

tigercat2000 updated:

- - -

06 June 2017

-

DarkPyrolord updated:

- -

Fox McCloud updated:

- -

Kyep updated:

- -

imsxz updated:

- - -

04 June 2017

-

Crazylemon64 updated:

- -

FreeStylaLT updated:

- - -

03 June 2017

-

FlattestGuitar updated:

- - -

01 June 2017

-

Alexshreds updated:

- -

FreeStylaLT updated:

- -

Kyep updated:

- -

Purpose2 updated:

- -

tigercat2000 updated:

- - -

31 May 2017

-

FalseIncarnate updated:

- -

Xantholne updated:

- - -

30 May 2017

-

Fruerlund updated:

- - -

29 May 2017

-

Jovaniph updated:

- -

Purpose2 updated:

- -

Tayyyyyyy, FlattestGuitar updated:

- - -

28 May 2017

-

Fox McCloud updated:

- - -

27 May 2017

-

Crazylemon64 updated:

- - -

26 May 2017

-

FlattyPatty updated:

- - -

25 May 2017

-

FalseIncarnate updated:

- -

Fethas updated:

- -

Kyep updated:

- -

Purpose2 updated:

- -

Tayyyyyyy, PhantasmicDream updated:

- - -

24 May 2017

-

Kyep updated:

- - -

23 May 2017

-

Fethas updated:

- -

Purpose2 updated:

- - -

22 May 2017

-

DarkPyrolord updated:

- -

Kyep updated:

- - -

21 May 2017

-

KasparoVy updated:

- - -

20 May 2017

-

FlattestGuitar updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

Kyep: updated:

- -

Xantholne updated:

- - -

19 May 2017

-

IK3I updated:

- -

MarsM0nd updated:

- -

Purpose2 updated:

- - -

18 May 2017

-

FreeStylaLT updated:

- -

Purpose2 updated:

- -

TullyBurnalot updated:

- - -

17 May 2017

-

Fethas updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

Purpose2 updated:

- -

Travelling Merchant updated:

- - -

16 May 2017

-

FlattestGuitar updated:

- -

FreeStylaLT updated:

- -

Kyep updated:

- -

uraniummeltdown updated:

- - -

15 May 2017

-

TullyBurnalot updated:

- - -

13 May 2017

-

Fethas updated:

- -

KasparoVy updated:

- - -

12 May 2017

-

Fethas updated:

- -

Xantholne updated:

- - -

11 May 2017

-

Fethas updated:

- -

Fox McCloud updated:

- - -

09 May 2017

-

Fethas updated:

- - -

08 May 2017

-

Purpose2 updated:

- -

uraniummeltdown updated:

- - -

07 May 2017

-

GunDOSMk1 updated:

- -

Purpose2 updated:

- -

Twinmold updated:

- - -

06 May 2017

-

Allfd updated:

- -

Fethas updated:

- -

LightFire69 updated:

- -

uraniummeltdown updated:

- - -

05 May 2017

-

Fethas updated:

- - -

01 May 2017

-

Fethas updated:

- - -

30 April 2017

-

scrubmcnoob updated:

- - -

29 April 2017

-

FalseIncarnate updated:

- -

Phantasmic Dream Art, Fethas PR updated:

- -

uraniummeltdown updated:

- - -

28 April 2017

-

Alffd updated:

- - -

27 April 2017

-

Kyep updated:

- - -

26 April 2017

-

FalseIncarnate updated:

- -

pinatacolada updated:

- - -

25 April 2017

-

Flattest updated:

- -

uraniummeltdown updated:

- - -

24 April 2017

-

Flattest updated:

- - -

23 April 2017

-

Citinited updated:

- -

Crazylemon64 updated:

- -

IK3I updated:

- -

Tayyyyyyy updated:

- - -

21 April 2017

-

Anticept updated:

- -

Fox McCloud updated:

- -

Lady-Luck updated:

- -

Spacemanspark updated:

- -

Twinmold93 updated:

- -

alexkar598 updated:

- -

monster860 updated:

- - -

19 April 2017

-

IK3I updated:

- -

Xantholne updated:

- - -

17 April 2017

-

KasparoVy updated:

- -

Krausus updated:

- - -

16 April 2017

-

FalseIncarnate updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

Twinmold93 updated:

- -

Xantholne updated:

- -

ZomgPonies updated:

- -

uraniummeltdown updated:

- - -

11 April 2017

-

FalseIncarnate updated:

- - -

09 April 2017

-

Fox McCloud updated:

- -

Purpose2 updated:

- - -

06 April 2017

-

Fox McCloud updated:

- -

davipatury updated:

- - -

05 April 2017

-

KasparoVy updated:

- -

Purpose2 updated:

- -

Twinmold93 updated:

- - -

04 April 2017

-

FalseIncarnate updated:

- - -

03 April 2017

-

Kyep updated:

- - -

02 April 2017

-

KasparoVy updated:

- -

Kyep updated:

- - -

31 March 2017

-

Krausus updated:

- -

Kyep updated:

- - -

30 March 2017

-

Crazylemon64 updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

uraniummeltdown updated:

- - -

29 March 2017

-

Purpose2 updated:

- - -

28 March 2017

-

KasparoVy updated:

- -

uraniummeltdown updated:

- - -

27 March 2017

-

Crazylemon64 updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

Purpose2 updated:

- - -

26 March 2017

-

FalseIncarnate updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

Purpose2 updated:

- -

Ty-Omaha updated:

- -

uraniummeltdown updated:

- - -

25 March 2017

-

Crazylemon64 updated:

- -

Kyep updated:

- - -

24 March 2017

-

KasparoVy updated:

- -

uraniummeltdown updated:

- - -

23 March 2017

-

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

MarsM0nd updated:

- -

Norgad updated:

- -

uraniummeltdown updated:

- - -

22 March 2017

-

Crazylemon64 updated:

- -

FlattestGuitar updated:

- -

KasparoVy updated:

- -

Krausus updated:

- - -

21 March 2017

-

Crazylemon64 updated:

- -

KasparoVy updated:

- -

uraniummeltdown updated:

- - -

20 March 2017

-

Jovaniph updated:

- -

KasparoVy updated:

- -

Purpose2 updated:

- -

Tayyyyyyy updated:

- - -

19 March 2017

-

Jovaniph updated:

- -

Krausus updated:

- -

Kyep updated:

- -

uraniummeltdown updated:

- - -

18 March 2017

-

Fox McCloud updated:

- -

Jovaniph updated:

- -

uraniummeltdown updated:

- - -

16 March 2017

-

FlattestGeetar updated:

- -

Jovaniph updated:

- -

Markolie updated:

- - -

15 March 2017

-

uraniummeltdown updated:

- - -

14 March 2017

-

uraniummeltdown updated:

- - -

13 March 2017

-

Kyep updated:

- -

uraniummeltdown updated:

- - -

12 March 2017

-

Crazylemon64 updated:

- -

Jovaniph updated:

- -

Kyep updated:

- -

Markolie updated:

- -

Twinmold93 updated:

- - -

11 March 2017

-

Developed by XDTM, ported by davipatury updated:

- -

Flatty Patty updated:

- -

FlattyPatty updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Markolie updated:

- -

davipatury updated:

- -

uraniummeltdown updated:

- - -

10 March 2017

-

Jovaniph updated:

- -

Markolie updated:

- - -

09 March 2017

-

Crazylemon64 updated:

- -

LordJike updated:

- -

Markolie updated:

- - -

08 March 2017

-

Alffd updated:

- -

FlaaaaaattestGuitar updated:

- -

Fox McCloud updated:

- -

Kyep updated:

- -

uraniummeltdown updated:

- - -

07 March 2017

-

Crazylemon64 updated:

- -

Kyep updated:

- -

MarsM0nd updated:

- - -

05 March 2017

-

Kyep updated:

- -

MarsM0nd updated:

- - -

04 March 2017

-

Markolie updated:

- -

davipatury updated:

- - -

03 March 2017

-

FlauntestGuitar updated:

- -

uraniummeltdown updated:

- - -

01 March 2017

-

Crazylemon64 updated:

- -

Fethas updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

Purpose2 updated:

- - -

28 February 2017

-

KasparoVy updated:

- - -

27 February 2017

-

uraniummeltdown updated:

- - -

26 February 2017

-

Crazylemon64 updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

davipatury updated:

- - -

25 February 2017

-

Crazylemon64 updated:

- -

FlattestGuitar updated:

- -

KasparoVy updated:

- -

davipatury updated:

- - -

24 February 2017

-

FalseIncarnate updated:

- -

Kyep updated:

- -

Markolie updated:

- -

Purpose2 updated:

- -

Twinmold93 updated:

- -

davipatury updated:

- - -

23 February 2017

-

Krausus updated:

- -

Markolie updated:

- - -

22 February 2017

-

KasparoVy updated:

- - -

21 February 2017

-

Crazylemon64 updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

Markolie updated:

- -

davipatury updated:

- -

uraniummeltdown updated:

- - -

20 February 2017

-

Markolie updated:

- -

davipatury updated:

- -

tigercat2000 updated:

- - -

19 February 2017

-

Markolie updated:

- - -

18 February 2017

-

Alffd updated:

- -

Crazylemon64 updated:

- -

Krausus updated:

- -

Kyep updated:

- -

Markolie updated:

- -

uraniummeltdown updated:

- - -

17 February 2017

-

Crazylemon64 updated:

- -

Ported by Markolie, developed by AnturK updated:

- - -

16 February 2017

-

Crazylemon64 updated:

- -

KasparoVy updated:

- -

davipatury updated:

- -

uraniummeltdown updated:

- - -

15 February 2017

-

Alexshreds updated:

- -

Ausops updated:

- -

Crazylemon64 updated:

- -

FlimFlamm updated:

- -

KasparoVy updated:

- -

Markolie updated:

- -

Twinmold93 updated:

- -

uraniummeltdown updated:

- - -

14 February 2017

-

Developed by Cyberboss, ported by Markolie updated:

- -

DrunkDwarf updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

Markolie updated:

- - -

13 February 2017

-

Crazylemon64 updated:

- -

Fethas updated:

- -

Fluff12 updated:

- -

Fox McCloud updated:

- -

Kyep updated:

- -

Markolie updated:

- -

uraniummeltdown updated:

- - -

12 February 2017

-

Fox McCloud updated:

- -

Kyep updated:

- -

uraniummeltdown updated:

- - -

11 February 2017

-

Markolie updated:

- - -

10 February 2017

-

Fox McCloud updated:

- -

KasparoVy, Krausus updated:

- -

Markolie updated:

- -

tigercat2000 updated:

- -

uraniummeltdown updated:

- - -

08 February 2017

-

Fox McCloud updated:

- - -

07 February 2017

-

Fox MCCloud updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

uraniummeltdown updated:

- - -

06 February 2017

-

Fox McCloud updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

uraniummeltdown updated:

- - -

05 February 2017

-

Fethas updated:

- -

Fox McCloud and Core0verload updated:

- -

Ported by Markolie, developed by KorPhaeron and others from /tg/. The Hierophant was developed by ChangelingRain. updated:

- -

uraniummeltdown updated:

- - -

03 February 2017

-

DrunkDwarf updated:

- - -

02 February 2017

-

Alexshreds updated:

- -

Kyep updated:

- -

uraniummeltdown updated:

- - -

31 January 2017

-

Ar3nn updated:

- -

FalseIncarnate updated:

- -

Fethas updated:

- -

FlattestGuitar updated:

- -

uraniummeltdown updated:

- - -

30 January 2017

-

Alexshreds updated:

- - -

29 January 2017

-

uraniummeltdown updated:

- - -

27 January 2017

-

Alffd updated:

- -

Fox McCloud updated:

- -

uraniummeltdown updated:

- - -

26 January 2017

-

FalseIncarnate updated:

- -

Fethas updated:

- -

FreeStylaLT updated:

- - -

25 January 2017

-

FlattestGuitar updated:

- -

scrubmcnoob updated:

- - -

23 January 2017

-

FalseIncarnate updated:

- -

Stratus updated:

- - -

18 January 2017

-

AndriiYukhymchak updated:

- -

Fethas updated:

- -

KasparoVy updated:

- -

Markolie updated:

- - -

17 January 2017

-

Crazylemon64 updated:

- -

Krausus updated:

- - -

16 January 2017

-

Alexshreds updated:

- -

Krausus updated:

- - -

15 January 2017

-

Funce updated:

- -

TullyBurnalot updated:

- - -

14 January 2017

-

Crazylemon64 updated:

- -

Krausus updated:

- - -

13 January 2017

-

DarkPyrolord updated:

- -

TullyBurnalot updated:

- -

uraniummeltdown updated:

- - -

12 January 2017

-

TullyBurnalot updated:

- - -

11 January 2017

-

Crazylemon64 updated:

- -

Lady Luck updated:

- -

Markolie updated:

- -

uraniummeltdown updated:

- - -

10 January 2017

-

Crazylemon updated:

- -

Crazylemon64 updated:

- -

Fox McCloud updated:

- -

TullyBurnalot updated:

- -

pinatacolada updated:

- -

uraniummeltdown updated:

- - -

09 January 2017

-

Crazylemon64 updated:

- -

Kyep updated:

- - -

07 January 2017

-

Markolie updated:

- - -

06 January 2017

-

Crazylemon64 updated:

- -

Fethas updated:

- -

KasparoVy updated:

- -

Krausus updated:

- -

Kyep updated:

- - -

03 January 2017

-

KasparoVy updated:

- -

Kyep updated:

- - -

02 January 2017

-

KasparoVy updated:

- -

Krausus updated:

- -

Kyep updated:

- - -

01 January 2017

-

Kyep updated:

- - -

31 December 2016

-

Crazylemon64 updated:

- - -

30 December 2016

-

Crazylemon updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- - -

29 December 2016

-

Fethas updated:

- -

Markolie updated:

- - -

25 December 2016

-

FalseIncarnate updated:

- -

KasparoVy updated:

- - -

23 December 2016

-

Crazylemon64 updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Markolie updated:

- - -

20 December 2016

-

TullyBurnalot updated:

- - -

14 December 2016

-

Fox McCloud updated:

- - -

13 December 2016

-

TullyBurnalot updated:

- - -

12 December 2016

-

Kyep updated:

- -

TullyBurnalot updated:

- - -

09 December 2016

-

KasparoVy updated:

- - -

08 December 2016

-

Kyep updated:

- - -

07 December 2016

-

Markolie updated:

- -

TullyBurnalot updated:

- - -

06 December 2016

-

Markolie updated:

- - -

05 December 2016

-

KasparoVy updated:

- - -

04 December 2016

-

KasparoVy updated:

- - -

03 December 2016

-

Kyep updated:

- - -

01 December 2016

-

Crazylemon64 updated:

- -

KasparoVy updated:

- -

Twinmold93 updated:

- - -

29 November 2016

-

KasparoVy updated:

- - -

28 November 2016

-

Allfd updated:

- -

Crazylemon64 updated:

- -

KasparoVy updated:

- - -

26 November 2016

-

Fox McCloud updated:

- - -

23 November 2016

-

Fethas updated:

- -

FlattestNerd updated:

- -

Fox McCloud updated:

- - -

22 November 2016

-

KasparoVy updated:

- -

Twinmold93 updated:

- - -

20 November 2016

-

KasparoVy updated:

- - -

15 November 2016

-

KasparoVy updated:

- - -

13 November 2016

-

Fox McCloud updated:

- - -

07 November 2016

-

Crazylemon updated:

- -

Crazylemon64 updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Twinmold93 updated:

- - -

23 October 2016

-

KasparoVy updated:

- - -

15 October 2016

-

Crazylemon64 updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

GeneralChaos81 updated:

- -

KasparoVy updated:

- -

Krausus updated:

- - -

16 September 2016

-

Aurorablade updated:

- -

Coldflame updated:

- -

Crazylemon64 updated:

- -

DaveTheHeadcrab updated:

- -

FlattestGuitar updated:

- -

FreeStylaLT updated:

- -

IcyV updated:

- -

Improvedname updated:

- -

KasparoVy updated:

- -

Krausus updated:

- -

Kyep updated:

- -

LittleBigKid2000 updated:

- -

TheDZD updated:

- -

Ty-Omaha updated:

- - -

01 September 2016

-

Crazylemon updated:

- -

monster860 updated:

- - -

29 August 2016

-

Crazylemon updated:

- -

DaveTheHeadcrab updated:

- -

Fox McCloud updated:

- -

Fox McCloud and KorPhaeron updated:

- -

FreeStylaLT updated:

- -

Krausus updated:

- -

Kyep updated:

- -

TheDZD updated:

- -

TullyBurnalot updated:

- - -

19 August 2016

-

Crazylemon updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

IcyV updated:

- -

Krausus updated:

- -

TheDZD updated:

- - -

18 August 2016

-

Alexshreds updated:

- -

Ar3nn updated:

- -

Chakishreds updated:

- -

Chopchop1614 updated:

- -

Crazylemon updated:

- -

Crazylemon64 updated:

- -

DaveTheHeadcrab updated:

- -

FalseIncarnate updated:

- -

Fethas updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

General Chaos updated:

- -

IcyV updated:

- -

KorPhaeron and Fox McCloud updated:

- -

Krausus updated:

- -

Kyep updated:

- -

LittleBigKid2000 updated:

- -

Norgad updated:

- -

TullyBurnalot updated:

- -

Ty-Omaha updated:

- -

taukausanake updated:

- -

tristan1333 updated:

- - -

08 August 2016

-

Ar3nn updated:

- -

Chakirski updated:

- -

Crazylemon64 updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

KasparoVy updated:

- -

Krausus updated:

- -

LittleBigKid2000 updated:

- -

Pinatacolada updated:

- -

Ty-Omaha updated:

- -

Yurivw updated:

- -

chopchop1614 updated:

- - -

03 August 2016

-

Fox McCloud updated:

- -

Krausus updated:

- -

chopchop1614 updated:

- - -

01 August 2016

-

Crazylemon64 updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

IcyV updated:

- -

Krausus updated:

- -

Kyep updated:

- -

TheBeoni updated:

- -

TheDZD updated:

- -

TullyBurnalot updated:

- -

Twinmold updated:

- -

tigercat2000 updated:

- - -

28 July 2016

-

A Giant-Ass Mountain of Salt updated:

- -

Crazylemon64 updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

Fox-McCloud updated:

- -

FreeStylaLT updated:

- -

Krausus updated:

- -

Kyep updated:

- -

Spacemanspark updated:

- -

TheDZD updated:

- -

TullyBurnalot updated:

- -

Twinmold updated:

- -

Ty-Omaha updated:

- -

monster860, clusterfack, and DeityLink updated:

- -

tigercat2000 updated:

- - -

21 July 2016

-

Alffd updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

Kyep updated:

- -

TullyBBurnalot updated:

- -

monster860 updated:

- - -

20 July 2016

-

Allfd updated:

- -

Ar3nn updated:

- -

Chakirski updated:

- -

CrAzYPiLoT updated:

- -

Crazylemon64 updated:

- -

DaveTheHeadcrab updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

KasparoVy updated:

- -

Krausus updated:

- -

Kyep updated:

- -

LittleBigKid2000 and TullyBBurnalot updated:

- -

Tauka Usanake updated:

- -

TullyBBurnalot updated:

- -

TullyBurnalot updated:

- -

Twinmold updated:

- -

monster860 updated:

- -

tigercat2000 updated:

- - -

13 July 2016

-

Ar3nn updated:

- -

Chakirski updated:

- -

DaveTheHeadcrab updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Krausus updated:

- -

Kyep updated:

- -

TheDZD updated:

- -

TullyBurnalot updated:

- -

Twinmold updated:

- -

monster860 updated:

- - -

09 July 2016

-

Chakirski updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

Krausus updated:

- -

TheDZD updated:

- -

TullyBurnalot updated:

- -

Twinmold updated:

- - -

07 July 2016

-

Ar3nn updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

KasparoVy updated:

- -

Krausus updated:

- -

Kyep updated:

- -

TheDZD updated:

- -

TullyBurnalot updated:

- - -

02 July 2016

-

Fethas updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

KasparoVy updated:

- -

Krausus updated:

- -

Kyep updated:

- -

Tastyfish updated:

- -

TheDZD updated:

- -

VampyrBytes updated:

- -

monster860 updated:

- -

tigercat2000 updated:

- - -

28 June 2016

-

CrAzYPiLoT updated:

- -

DaveTheHeadcrab updated:

- -

FalseIncarnate updated:

- -

Fethas updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Krausus updated:

- -

Kyep updated:

- -

LittleBigKid2000 updated:

- -

Norgad updated:

- -

Tastyfish updated:

- -

TheDZD updated:

- -

Twinmold updated:

- -

VampyrBytes updated:

- -

monster860 updated:

- -

tigercat2000 updated:

- -

tkdrg updated:

- - -

19 June 2016

-

DaveTheHeadcrab updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

KasparoVy updated:

- -

LittleBigKid2000 updated:

- -

TheDZD updated:

- -

Twinmold updated:

- -

monster860 updated:

- -

tkdrg, Delimusca, Aranclanos, TheDZD updated:

- - -

12 June 2016

-

CrAzYPiLoT updated:

- -

Crazylemon64 updated:

- -

DaveTheHeadcrab updated:

- -

Fox McCloud updated:

- -

FreeStylaLT updated:

- -

Glorken updated:

- -

KasparoVy updated:

- -

Krausus updated:

- -

Many -tg-station Coders, TheDZD updated:

- -

Spacemanspark updated:

- -

Tauka Usanake updated:

- -

Twinmold updated:

- -

monster860 updated:

- -

pinatacolada updated:

- - -

02 June 2016

-

CrAzYPiLoT updated:

- -

Crazylemon64 updated:

- -

DaveTheHeadcrab updated:

- -

Fox McCloud updated:

- -

IK3I updated:

- -

Tastyfish updated:

- -

monster860 updated:

- - -

31 May 2016

-

CrAzYPiLoT updated:

- -

Fox McCloud updated:

- -

QuinnAggeler updated:

- -

Tastyfish updated:

- -

monster860 updated:

- - -

25 May 2016

-

CrAzYPiLoT updated:

- -

Fox McCloud updated:

- -

IK3I updated:

- - -

24 May 2016

-

CrAzYPiLoT updated:

- -

Crazylemon64 updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

QuinnAggeler updated:

- -

Tastyfish updated:

- -

monster860 updated:

- - -

20 May 2016

-

Fox McCloud updated:

- -

KasparoVy updated:

- -

QuinnAggeler updated:

- -

monster860 updated:

- - -

17 May 2016

-

AugRob updated:

- -

Fox MCCloud updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

monster860 updated:

- - -

10 May 2016

-

Crazylemon64 updated:

- -

FalseIncarnate updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

IK3I updated:

- -

NTSAM updated:

- -

QuinnAggeler updated:

- -

tigercat2000 updated:

- - -

04 May 2016

-

CrAzYPiLoT updated:

- -

Crazylemon64 updated:

- -

Fethas updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

IK3I updated:

- -

KasparoVy updated:

- -

LittleBigKid2000 updated:

- -

Norgad updated:

- -

QuinnAggeler updated:

- -

pinatacolada updated:

- - -

25 April 2016

-

CrAzYPiLoT updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

Meisaka updated:

- -

tigercat2000 updated:

- - -

20 April 2016

-

Crazylemon64 updated:

- -

FalseIncarnate updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

MarsM0nd updated:

- -

Tastyfish updated:

- -

monster860 updated:

- -

tigercat2000 updated:

- - -

14 April 2016

-

Aurorablade updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Meisaka updated:

- -

Tastyfish updated:

- -

TheDZD updated:

- -

monster860 updated:

- - -

12 April 2016

-

FalseIncarnate updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

Tastyfish updated:

- - -

07 April 2016

-

Crazylemon64 updated:

- -

FalseIncarnate updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

Tastyfish updated:

- -

tigercat2000 updated:

- - -

02 April 2016

-

Crazylemon64 updated:

- -

FalseIncarnate updated:

- -

Fethas updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

ProperPants updated:

- -

Tastyfish updated:

- -

TheDZD updated:

- -

tigercat2000 updated:

- - -

26 March 2016

-

Fox McCloud updated:

- -

KasparoVy updated:

- -

TheDZD updated:

- - -

25 March 2016

-

Crazylemon64 updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- - -

22 March 2016

-

Crazylemon64 updated:

- -

Fethas updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Regens updated:

- -

Tastyfish updated:

- -

TheDZD updated:

- -

TravellingMerchant updated:

- -

tigercat2000 updated:

- - -

16 March 2016

-

Crazylemon64 updated:

- -

DaveTheHeadcrab updated:

- -

FalseIncarnate updated:

- -

Fethas updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

Tastyfish updated:

- -

monster860 updated:

- -

taukausanake updated:

- - -

08 March 2016

-

Crazylemon64 updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

Spacemanspark updated:

- -

Tastyfish updated:

- -

TheDZD updated:

- -

monster860 updated:

- - -

07 March 2016

-

Crazylemon64 updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Tastyfish updated:

- -

VampyrBytes updated:

- - -

26 February 2016

-

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Spacemanspark updated:

- -

Tastyfish updated:

- - -

24 February 2016

-

Crazylemon64 updated:

- -

FalseIncarnate updated:

- -

FlattestGuitar updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

PPI updated:

- -

Regen1 updated:

- -

Spacemanspark updated:

- -

Tastyfish updated:

- -

pinatacolada updated:

- -

ppi updated:

- - -

13 February 2016

-

Crazylemon64 updated:

- -

DaveTheHeadcrab updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

TheDZD updated:

- - -

10 February 2016

-

Crazylemon64 updated:

- -

Fox McCloud updated:

- -

Glorken updated:

- -

KasparoVy updated:

- -

PPI updated:

- -

Regen updated:

- -

Spacemanspark updated:

- -

Tastyfish updated:

- -

TheDZD updated:

- - -

31 January 2016

-

Crazylemon64 updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

Tastyfish updated:

- -

pinatacolada updated:

- - -

29 January 2016

-

Crazylemon updated:

- -

Crazylemon64 updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Tastyfish updated:

- -

TheDZD updated:

- - -

24 January 2016

-

KasparoVy updated:

- -

Tastyfish updated:

- - -

23 January 2016

-

Fox McCloud updated:

- -

Tastyfish updated:

- -

Tigerbat2000 updated:

- - -

20 January 2016

-

DarkPyrolord updated:

- -

FalseIncarnate updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Tastyfish updated:

- -

TheDZD updated:

- - -

18 January 2016

-

Crazylemon updated:

- -

Dave The Headcrab updated:

- -

Deanthelis updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

Jey updated:

- -

KasparoVy updated:

- -

Kyep updated:

- -

NTSAM updated:

- -

PPI updated:

- -

Tastyfish updated:

- -

Tigercat2000 updated:

- - -

13 January 2016

-

Fox McCloud updated:

- -

Kyep updated:

- -

Tastyfish updated:

- - -

11 January 2016

-

CrAzYPiLoT updated:

- -

Crazylemon updated:

- -

Dave The Headcrab updated:

- -

Fox McCloud updated:

- - -

08 January 2016

-

Crazylemon updated:

- -

Dave The Headcrab updated:

- -

FalseIncarnate updated:

- -

Fethas updated:

- -

Fox McCloud updated:

- -

KasparoVy updated:

- -

Tastyfish updated:

- -

Tigercat2000 updated:

- - -

06 January 2016

-

Certhic updated:

- -

Crazylemon64 updated:

- -

Tastyfish updated:

- - -

03 January 2016

-

TheDZD updated:

- -
- -GoonStation 13 Development Team -
- Coders: Stuntwaffle, Showtime, Pantaloons, Nannek, Keelin, Exadv1, hobnob, Justicefries, 0staf, sniperchance, AngriestIBM, BrianOBlivion
- Spriters: Supernorn, Haruhi, Stuntwaffle, Pantaloons, Rho, SynthOrange, I Said No
-
-
-

Creative Commons License
Except where otherwise noted, Goon Station 13 is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License.
Rights are currently extended to SomethingAwful Goons only.

-

Some icons by Yusuke Kamiyamane. All rights reserved. Licensed under a Creative Commons Attribution 3.0 License.

- - - diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index bd6ac9e988b..51b62a2d299 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -6352,3 +6352,6 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - rscadd: Slimes can steal nutrition from other slimes when attacking them - rscadd: Slime docility potion no longer makes a simple animal slime, instead makes the target docile and never hungry +2018-04-28: + MINIMAN10000: + - rscadd: Developer express start diff --git a/html/changelogs/AutoChangeLog-pr-8933.yml b/html/changelogs/AutoChangeLog-pr-8933.yml new file mode 100644 index 00000000000..49ecc55e737 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-8933.yml @@ -0,0 +1,3 @@ +author: Fox McCloud +changes: [] +delete-after: true diff --git a/html/changelogs/AutoChangeLog-pr-8936.yml b/html/changelogs/AutoChangeLog-pr-8936.yml new file mode 100644 index 00000000000..c4907653f89 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-8936.yml @@ -0,0 +1,4 @@ +author: "Fox McCloud" +delete-after: True +changes: + - rscadd: "Adds Blast cannon" diff --git a/html/changelogs/AutoChangeLog-pr-8941.yml b/html/changelogs/AutoChangeLog-pr-8941.yml new file mode 100644 index 00000000000..da88bb3f516 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-8941.yml @@ -0,0 +1,3 @@ +author: Anasari +changes: [] +delete-after: true diff --git a/html/changelogs/AutoChangeLog-pr-8957.yml b/html/changelogs/AutoChangeLog-pr-8957.yml new file mode 100644 index 00000000000..49ecc55e737 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-8957.yml @@ -0,0 +1,3 @@ +author: Fox McCloud +changes: [] +delete-after: true diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index e465cdd6901..16eeff1107f 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/inhands/guns_lefthand.dmi b/icons/mob/inhands/guns_lefthand.dmi index b258ecdfb50..2066f60075a 100644 Binary files a/icons/mob/inhands/guns_lefthand.dmi and b/icons/mob/inhands/guns_lefthand.dmi differ diff --git a/icons/mob/inhands/guns_righthand.dmi b/icons/mob/inhands/guns_righthand.dmi index fb256e34937..9ed3a2ca4bf 100644 Binary files a/icons/mob/inhands/guns_righthand.dmi and b/icons/mob/inhands/guns_righthand.dmi differ diff --git a/icons/mob/species/plasmaman/helmet.dmi b/icons/mob/species/plasmaman/helmet.dmi index bc47b78d03f..188db97e788 100644 Binary files a/icons/mob/species/plasmaman/helmet.dmi and b/icons/mob/species/plasmaman/helmet.dmi differ diff --git a/icons/mob/species/plasmaman/suit.dmi b/icons/mob/species/plasmaman/suit.dmi index f61a5a0e805..42832013f85 100644 Binary files a/icons/mob/species/plasmaman/suit.dmi and b/icons/mob/species/plasmaman/suit.dmi differ diff --git a/icons/obj/clothing/species/plasmaman/hats.dmi b/icons/obj/clothing/species/plasmaman/hats.dmi index bcfa32a558e..1d85d184ad1 100644 Binary files a/icons/obj/clothing/species/plasmaman/hats.dmi and b/icons/obj/clothing/species/plasmaman/hats.dmi differ diff --git a/icons/obj/clothing/species/plasmaman/suits.dmi b/icons/obj/clothing/species/plasmaman/suits.dmi index 86f4e6ede2e..43d69f5fa82 100644 Binary files a/icons/obj/clothing/species/plasmaman/suits.dmi and b/icons/obj/clothing/species/plasmaman/suits.dmi differ diff --git a/icons/obj/custom_items.dmi b/icons/obj/custom_items.dmi index 384b608a5c2..8c3b77c337d 100644 Binary files a/icons/obj/custom_items.dmi and b/icons/obj/custom_items.dmi differ diff --git a/icons/obj/guns/projectile.dmi b/icons/obj/guns/projectile.dmi index a630f68652d..22dc1384904 100644 Binary files a/icons/obj/guns/projectile.dmi and b/icons/obj/guns/projectile.dmi differ diff --git a/icons/obj/projectiles.dmi b/icons/obj/projectiles.dmi index 8c3d0f2c81f..2e1e5d45006 100644 Binary files a/icons/obj/projectiles.dmi and b/icons/obj/projectiles.dmi differ diff --git a/paradise.dme b/paradise.dme index 471ced090fd..8944ad71a48 100644 --- a/paradise.dme +++ b/paradise.dme @@ -311,6 +311,8 @@ #include "code\datums\helper_datums\map_template.dm" #include "code\datums\helper_datums\teleport.dm" #include "code\datums\helper_datums\topic_input.dm" +#include "code\datums\looping_sounds\looping_sound.dm" +#include "code\datums\looping_sounds\machinery_sounds.dm" #include "code\datums\outfits\outfit.dm" #include "code\datums\outfits\outfit_admin.dm" #include "code\datums\ruins\space.dm" @@ -2002,6 +2004,7 @@ #include "code\modules\projectiles\guns\energy\telegun.dm" #include "code\modules\projectiles\guns\magic\staff.dm" #include "code\modules\projectiles\guns\magic\wand.dm" +#include "code\modules\projectiles\guns\misc\blastcannon.dm" #include "code\modules\projectiles\guns\projectile\automatic.dm" #include "code\modules\projectiles\guns\projectile\bow.dm" #include "code\modules\projectiles\guns\projectile\launchers.dm" diff --git a/sound/machines/shower/shower_end.ogg b/sound/machines/shower/shower_end.ogg new file mode 100644 index 00000000000..80b93af39eb Binary files /dev/null and b/sound/machines/shower/shower_end.ogg differ diff --git a/sound/machines/shower/shower_mid1.ogg b/sound/machines/shower/shower_mid1.ogg new file mode 100644 index 00000000000..e1ae5a0c456 Binary files /dev/null and b/sound/machines/shower/shower_mid1.ogg differ diff --git a/sound/machines/shower/shower_mid2.ogg b/sound/machines/shower/shower_mid2.ogg new file mode 100644 index 00000000000..4a54acd3524 Binary files /dev/null and b/sound/machines/shower/shower_mid2.ogg differ diff --git a/sound/machines/shower/shower_mid3.ogg b/sound/machines/shower/shower_mid3.ogg new file mode 100644 index 00000000000..8b4776a9b97 Binary files /dev/null and b/sound/machines/shower/shower_mid3.ogg differ diff --git a/sound/machines/shower/shower_start.ogg b/sound/machines/shower/shower_start.ogg new file mode 100644 index 00000000000..e5529f401bb Binary files /dev/null and b/sound/machines/shower/shower_start.ogg differ diff --git a/sound/weapons/blastcannon.ogg b/sound/weapons/blastcannon.ogg new file mode 100644 index 00000000000..9b88f3ecf96 Binary files /dev/null and b/sound/weapons/blastcannon.ogg differ