Compare commits

...

5 Commits

Author SHA1 Message Date
Ponk
176ce6a3bd Merge pull request #150 from P0nk/bug-147/cwkpq-summons #patch
Fix error summoning master guardians on CWKPQ last stage
2022-10-16 12:32:51 +02:00
P0nk
f267b1fc0b Fix error summoning master guardians on CWKPQ last stage 2022-10-16 12:30:01 +02:00
Ponk
ea0bdb55af Merge pull request #149 from P0nk/tag-merge-commit
Tag the merge commit instead of last commit in the PR #patch
2022-10-16 11:56:24 +02:00
P0nk
4004b36bfa Tag the merge commit instead of last commit in the PR
The merge commit is more suitable since it provides some context
and groups up all the commits.
2022-10-16 11:53:29 +02:00
Ponk
d0a4c416e4 Merge pull request #148 from P0nk/versioning
Define versioning scheme
2022-10-16 10:06:55 +02:00
2 changed files with 5 additions and 5 deletions

View File

@@ -2,9 +2,7 @@
name: Bump version
on:
pull_request:
types:
- closed
push:
branches:
- master

View File

@@ -35,11 +35,13 @@ function action(mode, type, selection) {
cm.mapMessage(6, "Engarde! Master Guardians approach!");
for (var i = 0; i < 10; i++) {
var mob = eim.getMonster(9400594);
cm.getMap().spawnMonsterOnGroundBelow(mob, new java.awt.Point(-1337 + (Math.random() * 1337), 276));
const xPos = Math.floor(-1337 + (Math.random() * 1337))
cm.getMap().spawnMonsterOnGroundBelow(mob, new java.awt.Point(xPos, 276));
}
for (var i = 0; i < 20; i++) {
var mob = eim.getMonster(9400582);
cm.getMap().spawnMonsterOnGroundBelow(mob, new java.awt.Point(-1337 + (Math.random() * 1337), 276));
const xPos = Math.floor(-1337 + (Math.random() * 1337))
cm.getMap().spawnMonsterOnGroundBelow(mob, new java.awt.Point(xPos, 276));
}
eim.setIntProperty("glpq6", 1);
cm.dispose();