mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Improvements to quest event create/delete behavior.
This commit is contained in:
parent
88421d894c
commit
f228fda979
@ -11,7 +11,7 @@ class CreateEventAction(
|
|||||||
private val index: Int,
|
private val index: Int,
|
||||||
private val event: QuestEventModel,
|
private val event: QuestEventModel,
|
||||||
) : Action {
|
) : Action {
|
||||||
override val description: String = "Add event ${event.id.value}"
|
override val description: String = "Add event"
|
||||||
|
|
||||||
override fun execute() {
|
override fun execute() {
|
||||||
change {
|
change {
|
||||||
|
@ -192,6 +192,12 @@ class QuestEditorStore(
|
|||||||
setSelectedEntity(null)
|
setSelectedEntity(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val quest = currentQuest.value
|
||||||
|
|
||||||
|
if (quest != null && _currentArea.value?.id != event.areaId) {
|
||||||
|
_currentArea.value = areaStore.getArea(quest.episode, event.areaId)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_selectedEvent.value = event
|
_selectedEvent.value = event
|
||||||
|
@ -38,6 +38,8 @@ class EventsControllerTests : WebTestSuite {
|
|||||||
store.redo()
|
store.redo()
|
||||||
|
|
||||||
assertEquals(1, quest.events.value.size)
|
assertEquals(1, quest.events.value.size)
|
||||||
|
assertTrue(store.canUndo.value)
|
||||||
|
assertFalse(store.canRedo.value)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
Loading…
Reference in New Issue
Block a user