Explorar el Código

Merge branch 'master' of gitlab.com:Isleward/isleward

tags/v0.10.0^2
Shaun hace 2 años
padre
commit
be8ac199e8
Se han modificado 4 ficheros con 8 adiciones y 4 borrados
  1. +1
    -1
      src/client/ui/templates/death/death.js
  2. +4
    -0
      src/client/ui/templates/online/online.js
  3. +2
    -2
      src/client/ui/templates/online/template.html
  4. +1
    -1
      src/server/config/factionBase.js

+ 1
- 1
src/client/ui/templates/death/death.js Ver fichero

@@ -24,7 +24,7 @@ define([
},

onLogout: function () {
$('.uiOptions').data('ui').charSelect();
$('.uiMainMenu').data('ui').charSelect();
},

onRespawn: function () {


+ 4
- 0
src/client/ui/templates/online/online.js Ver fichero

@@ -90,6 +90,10 @@ define([
},

build: function () {
let headingText = this.el.find('.heading-text');
let playerCount = this.onlineList.length;
headingText.html(`online players (${playerCount})`);

let container = this.el.find('.list');
container
.children(':not(.heading)')


+ 2
- 2
src/client/ui/templates/online/template.html Ver fichero

@@ -1,7 +1,7 @@
<div class="uiOnline hasBorderShadow">
<div class="heading">
<div class="heading-text">online players</div>
</div>
<div class="heading-text">online players</div>
</div>
<div class="bottom">
<div class="list">
<div class="heading">


+ 1
- 1
src/server/config/factionBase.js Ver fichero

@@ -1,7 +1,7 @@
module.exports = {
id: 'example',
name: 'Example',
decription: 'An example faction.',
description: 'An example faction.',

initialRep: 1000,
tiers: [{


Cargando…
Cancelar
Guardar