mirror of
https://github.com/RoY7x/worldbuilding.git
synced 2025-04-30 02:31:41 -04:00
System compatibility for core 0.4.4
This commit is contained in:
parent
be0c47da58
commit
df11172628
2 changed files with 3 additions and 3 deletions
|
@ -2,8 +2,8 @@
|
||||||
"name": "worldbuilding",
|
"name": "worldbuilding",
|
||||||
"title": "Simple World-Building",
|
"title": "Simple World-Building",
|
||||||
"description": "A minimalist game system with very simple Actor and Item models to support free-form system agnostic gameplay.",
|
"description": "A minimalist game system with very simple Actor and Item models to support free-form system agnostic gameplay.",
|
||||||
"version": 0.3,
|
"version": 0.31,
|
||||||
"minimumCoreVersion": "0.4.0",
|
"minimumCoreVersion": "0.4.4",
|
||||||
"templateVersion": 2,
|
"templateVersion": 2,
|
||||||
"author": "Atropos",
|
"author": "Atropos",
|
||||||
"esmodules": ["module/simple.js"],
|
"esmodules": ["module/simple.js"],
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
<div class="tab items" data-group="primary" data-tab="items">
|
<div class="tab items" data-group="primary" data-tab="items">
|
||||||
<ol class="items-list">
|
<ol class="items-list">
|
||||||
{{#each actor.items as |item id|}}
|
{{#each actor.items as |item id|}}
|
||||||
<li class="item flexrow" data-item-id="{{item.id}}">
|
<li class="item flexrow" data-item-id="{{item._id}}">
|
||||||
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24"/>
|
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24"/>
|
||||||
<h4 class="item-name">{{item.name}}</h4>
|
<h4 class="item-name">{{item.name}}</h4>
|
||||||
<div class="item-controls">
|
<div class="item-controls">
|
||||||
|
|
Loading…
Add table
Reference in a new issue