• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Go で書き直した Ikemen


Commit MetaInfo

Revisãoe7a1aa5607f5cb7d8b231b9fb8802a75d23e2466 (tree)
Hora2018-12-06 21:11:28
Autorsuehiro <supersuehiro@user...>
Commitersuehiro

Mensagem de Log

ガード硬直中にポーズがかかるとガードできないのを修正

Mudança Sumário

Diff

--- a/src/char.go
+++ b/src/char.go
@@ -4012,7 +4012,8 @@ func (c *Char) action() {
40124012 }
40134013 c.acttmp = -int8(Btoi(p)) * 2
40144014 c.unsetSCF(SCF_guard)
4015- if !(c.scf(SCF_ko) || c.ctrlOver()) && (c.scf(SCF_ctrl) || c.ss.no == 52) &&
4015+ if !(c.scf(SCF_ko) || c.ctrlOver()) &&
4016+ (c.scf(SCF_ctrl) || c.ss.no == 52 || c.inGuardState()) &&
40164017 c.ss.moveType == MT_I && c.cmd != nil &&
40174018 (sys.autoguard[c.playerNo] || c.cmd[0].Buffer.B > 0) &&
40184019 (c.ss.stateType == ST_S && !c.sf(CSF_nostandguard) ||