Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
96412c8
Fix: NPCs spawned under a target couldn't attack
HarleyGilpin Apr 10, 2026
15f8f32
Fix: NPCs spawned under a target couldn't attack
HarleyGilpin Apr 10, 2026
79de0ee
Merge remote-tracking branch 'origin/main'
HarleyGilpin Apr 11, 2026
1bf5b14
Fix: NPCs spawned under a target couldn't attack
HarleyGilpin Apr 11, 2026
635e183
Fix: character creation screen skipped for new accounts
HarleyGilpin Apr 11, 2026
d15e006
Fix: game loop crash when dying to TzTok-Jad in Fight Cave
HarleyGilpin Apr 12, 2026
8bc6b1b
chore: add missing dragon arrow items to ammo_groups.toml
HarleyGilpin Apr 12, 2026
2e8369f
Fix: dragon claws special attack damage and hit timing
HarleyGilpin Apr 12, 2026
2b13373
Fix: dragon claws special attack damage and hit timing
HarleyGilpin Apr 12, 2026
116b520
feat: add clan wars safe and dangerous free-for-all portals.
HarleyGilpin Apr 12, 2026
78ff78b
Fix: bank tab creation and collapse
HarleyGilpin Apr 13, 2026
725153d
Merge branch 'GregHib:main' into main
HarleyGilpin Apr 13, 2026
7b9f6ef
chore: replaced redundant code with stepOut function.
HarleyGilpin Apr 13, 2026
1fd24cd
Update game/src/main/kotlin/content/minigame/clan_wars/ClanWarsFreeFo…
HarleyGilpin Apr 13, 2026
3869de9
Update game/src/main/kotlin/content/minigame/clan_wars/ClanWarsFreeFo…
HarleyGilpin Apr 13, 2026
cebe42e
Merge remote-tracking branch 'origin/main'
HarleyGilpin Apr 13, 2026
889b863
Fix: Clan Wars FFA "Don't show gain" toggle
HarleyGilpin Apr 14, 2026
99d61bc
bug: fixed the dragon claws delayed special attack.
HarleyGilpin Apr 14, 2026
9f11324
chore: spotlessApply ran
HarleyGilpin Apr 14, 2026
27697ef
Fix: Iterate cardinal directions in random order and queue the first …
HarleyGilpin Apr 14, 2026
4c22a31
Fix: The chinchompa AoE splash damage now only triggers on successful…
HarleyGilpin Apr 14, 2026
e84455a
feat: fast and combo food mechanics for attack and eat delays
HarleyGilpin Apr 21, 2026
2fee25a
Merge branch 'GregHib:main' into bugs/april-bug-fixes
HarleyGilpin Apr 22, 2026
ff334dd
Update Pickpocketing.kt
HarleyGilpin Apr 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ object Params {
const val AREA = 5009
const val ATT = 5010
const val ATTACK_BONUS = 5011
const val ATTACK_DELAY = 5056
const val ATTACK_RANGE = 5012
const val BANK_STACKS = 5013
const val BLOCK_TICKS = 5014
Expand Down Expand Up @@ -51,6 +52,7 @@ object Params {
const val DRAIN_SKILL = 5048
const val DROP_TABLE = 5049
const val DROPS = 5050
const val EAT_DELAY = 5070
const val EAT_MESSAGE = 5051
const val EFFECT_SECONDS = 5052
const val EFFECT_TICKS = 5053
Expand Down Expand Up @@ -341,6 +343,7 @@ object Params {
"area" -> AREA
"att" -> ATT
"attack_bonus" -> ATTACK_BONUS
"attack_delay" -> ATTACK_DELAY
"attack_range" -> ATTACK_RANGE
"bank_stacks" -> BANK_STACKS
"block_ticks" -> BLOCK_TICKS
Expand Down Expand Up @@ -380,6 +383,7 @@ object Params {
"drain_skill" -> DRAIN_SKILL
"drop_table" -> DROP_TABLE
"drops" -> DROPS
"eat_delay" -> EAT_DELAY
"eat_message" -> EAT_MESSAGE
"effect_seconds" -> EFFECT_SECONDS
"effect_ticks" -> EFFECT_TICKS
Expand Down
Loading
Loading