mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-26 05:53:39 -04:00
Stopped bug with useTranspiledCode; it will need more work later to get right.
This commit is contained in:
parent
fabf607b6a
commit
cff00f90b5
2 changed files with 6 additions and 3 deletions
app/views/play/level/tome
|
@ -22,7 +22,10 @@ module.exports = class Spell
|
|||
|
||||
@name = p.name
|
||||
@permissions = read: p.permissions?.read ? [], readwrite: p.permissions?.readwrite ? [] # teams
|
||||
@useTranspiledCode = @permissions.readwrite.length and ((not _.contains(@session.get('teamSpells')[@session.get('team')],@spellKey)) or (@session.get('creator') isnt me.id) or @spectateView)
|
||||
teamSpells = @session.get('teamSpells')
|
||||
team = @session.get('team') ? 'humans'
|
||||
@useTranspiledCode = @permissions.readwrite.length and ((teamSpells and not _.contains(teamSpells[team], @spellKey)) or (@session.get('creator') isnt me.id) or @spectateView)
|
||||
console.log @spellKey, "using transpiled code?", @useTranspiledCode
|
||||
@source = @originalSource = p.source
|
||||
@parameters = p.parameters
|
||||
if @permissions.readwrite.length and sessionSource = @session.getSourceFor(@spellKey)
|
||||
|
|
|
@ -121,7 +121,7 @@ module.exports = class TomeView extends View
|
|||
@thangSpells[thang.id].push spellKey
|
||||
unless method.cloneOf
|
||||
skipProtectAPI = @getQueryVariable "skip_protect_api", (@options.levelID in ['gridmancer'])
|
||||
spell = @spells[spellKey] = new Spell
|
||||
spell = @spells[spellKey] = new Spell
|
||||
programmableMethod: method
|
||||
spellKey: spellKey
|
||||
pathComponents: pathPrefixComponents.concat(pathComponents)
|
||||
|
@ -131,7 +131,7 @@ module.exports = class TomeView extends View
|
|||
worker: @worker
|
||||
language: language
|
||||
spectateView: @options.spectateView
|
||||
|
||||
|
||||
for thangID, spellKeys of @thangSpells
|
||||
thang = world.getThangByID thangID
|
||||
if thang
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue