Skip to content

Commit

Permalink
Prepared/tested to release on stable 1.19.60
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelDobCZ23 committed Feb 8, 2023
1 parent d648327 commit 39d2532
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 17 deletions.
12 changes: 3 additions & 9 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,19 @@
},
"format_version": 2,
"header": {
"description": "Campfires now set you and the entites on fire like they've used to! §9Made by PavelDobCZ23",
"description": "Campfires now set you and the entites on fire like they used to! §9Made by PavelDobCZ23",
"name": "On Campfire - On Fire",
"uuid": "03862db4-c4b9-42e1-b57b-daf391a5a05a",
"version": [ 0, 1, 0 ],
"version": [ 1, 0, 0 ],
"min_engine_version": [ 1, 19, 60 ]
},
"modules": [
{
"description": "On Campfire - On Fire [BP] - data module",
"type": "data",
"uuid": "2d602755-1a04-49fc-995c-0fb98b62a494",
"version": [0, 1, 0]
},
{
"description": "On Campfire - On Fire [BP] - script module",
"type": "script",
"language": "javascript",
"uuid": "514c9ddc-fd40-4189-9b10-bfc358089a33",
"version": [0, 1, 0],
"version": [1, 0, 0],
"entry": "scripts/main.js"
}
],
Expand Down
4 changes: 2 additions & 2 deletions scripts/config/config.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const scheduledTicks = 4;
export { scheduledTicks }
const SCHEDULED_TICKS = 4;
export { SCHEDULED_TICKS }
4 changes: 2 additions & 2 deletions scripts/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { system, world, BlockLocation } from '@minecraft/server';
import { scheduledTicks } from './config/config';
import { SCHEDULED_TICKS } from './config/config';
const DIMENSION_LIST = ['minecraft:overworld','minecraft:nether','minecraft:the_end'];

system.runSchedule(() => {
Expand All @@ -15,4 +15,4 @@ system.runSchedule(() => {
} catch {}
}
}
},scheduledTicks);
},SCHEDULED_TICKS);
4 changes: 2 additions & 2 deletions subpacks/normal/scripts/config/config.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const scheduledTicks = 4;
export { scheduledTicks }
const SCHEDULED_TICKS = 4;
export { SCHEDULED_TICKS }
4 changes: 2 additions & 2 deletions subpacks/performance/scripts/config/config.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const scheduledTicks = 20;
export { scheduledTicks }
const SCHEDULED_TICKS = 20;
export { SCHEDULED_TICKS }

0 comments on commit 39d2532

Please sign in to comment.