Skip to content

Commit

Permalink
fix + test some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellmonk committed Mar 15, 2017
1 parent 54b7981 commit d9fd16e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 36 deletions.
34 changes: 0 additions & 34 deletions crawl-ref/source/dat/des/arrival/small.des
Original file line number Diff line number Diff line change
Expand Up @@ -2648,40 +2648,6 @@ wcccccccwcWtWcwcccccccw
wwwwwwwwwcccccwwwwwwwww
ENDMAP

##############################################################
# A small-room arrival with wooden doors and big ring of trees and rocks.
NAME: saegor_arrival_under_anarchy
TAGS: arrival no_trap_gen no_monster_gen
ORIENT: float
NSUBST: @ = 3:@ / *:X
SUBST: X = tc w:1
COLOUR: # = lightgreen / green / yellow:1
NSUBST: p = 2:+ / *:c
COLOUR: + : brown
SUBST: # = .. 1:1
MONS: plant
KPROP: w = no_tele_into
NSUBST: { = 1:{ / *:.
MAP
xxx @@@ xxx
XXXX@.@XXXX
@@XXX.X.XXX@@
xX@...........@Xx
xXX...........XXx
xXX..ccpppcc..XXx
xXX..c#####c..XXx
@X...p##{##p...X@
@.X..p#####p..X.@
@X...p#{#{#p...X@
xXX..c#####c..XXx
xXX..ccpppcc..XXx
xXX...........XXx
xX@...........@Xx
@@XXX.X.XXX@@
XXXX@.@XXXX
xxx @@@ xxx
ENDMAP

##############################################################
# Moated graveyard arrival (oiseaux)
NAME: moated_graveyard_arrival
Expand Down
6 changes: 4 additions & 2 deletions crawl-ref/source/webserver/game_data/static/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,12 +353,14 @@ function ($, comm, enums, map_knowledge, messages, options) {
$("#stats_titleline").text(player.name + " " + player.title);
if (player.wizard)
$("#stats_wizmode").text("WIZARD");
else if (player.diff == -1)
$("#stats_wizmode").text("CASUAL");
else if (player.diff == 0)
$("#stats_wizmode").text("CASUAL");
$("#stats_wizmode").text("NORMAL");
else if (player.diff == 1)
$("#stats_wizmode").text("NORMAL");
else
$("#stats_wizmode").text("");
$("#stats_wizmode").text("Casual");

var do_temperature = false;
var do_contam = false;
Expand Down

0 comments on commit d9fd16e

Please sign in to comment.